We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd76b1d commit 399ee7eCopy full SHA for 399ee7e
scripts/prologue.jl
@@ -6,18 +6,17 @@
6
7
# !format: off
8
9
+# ============================ start of prologue.jl ============================
10
+# These constants are handled explicitly in the prologue.jl to avoid them being
11
+# automatically parsed as `const GRB_LESS_EQUAL = Cchar('<')`. There's probably
12
+# a better way to handle this, but it works for now, and they won't be changing
13
+# in future releases.
14
const GRB_LESS_EQUAL = '<'
-
15
const GRB_GREATER_EQUAL = '>'
16
const GRB_EQUAL = '='
17
const GRB_CONTINUOUS = 'C'
18
const GRB_BINARY = 'B'
19
const GRB_INTEGER = 'I'
20
21
const GRB_SEMICONT = 'S'
22
23
const GRB_SEMIINT = 'N'
+# ============================= end of prologue.jl =============================
0 commit comments