Skip to content

Commit

Permalink
Fix the Julia test of LHS
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Jan 11, 2025
1 parent 9db06a1 commit 0f8186f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GALAHAD.jl/test/test_lhs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function test_lhs(::Type{T}, ::Type{INT}) where {T,INT}
# Parameters
n_dimen = INT(7) # dimension
n_points = INT(2) # points required
X = zeros(INT, n_points, n_dimen) # points
X = zeros(INT, n_dimen, n_points) # points
seed = Ref{INT}()

# Set a random seed
Expand Down

0 comments on commit 0f8186f

Please sign in to comment.