Skip to content

Commit

Permalink
Merge pull request #846 from JuliaReach/schillic/GLGM06
Browse files Browse the repository at this point in the history
Use `preallocate` argument in `GLGM06`
  • Loading branch information
schillic authored Aug 28, 2024
2 parents 3faa5ad + 3a2df6e commit 9e468ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Algorithms/GLGM06/GLGM06.jl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function GLGM06(; δ::N,
DM<:AbstractDisjointnessMethod}

# algorithm with "preallocation" is only defined for the non-static case
preallocate = !static
preallocate = preallocate && !static
n = ismissing(dim) ? missing : Val(dim)
p = ismissing(ngens) ? missing : Val(ngens)
return GLGM06(δ, approx_model, max_order, Val(static), n, p,
Expand Down

0 comments on commit 9e468ab

Please sign in to comment.