Skip to content

Commit

Permalink
fix type in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rschwarz committed Dec 19, 2018
1 parent b53ca2a commit 4810361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/direct_library_calls.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@test rc == SCIP.SCIP_OKAY

# add constraint: 2x >= 3 ( really: 3 <= 2 * x <= inf )
cons__ = Ref{Ptr{SCIP.SCIP_VAR}}()
cons__ = Ref{Ptr{SCIP.SCIP_CONS}}()
rc = SCIP.SCIPcreateConsBasicLinear(scip_, cons__, "c", 0, C_NULL, C_NULL,
3.0, SCIP.SCIPinfinity(scip_))
@test rc == SCIP.SCIP_OKAY
Expand Down

0 comments on commit 4810361

Please sign in to comment.