Skip to content

Commit

Permalink
add license back and fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
mbataillou committed Jul 31, 2024
1 parent d449093 commit 85d8c59
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/attributes_controls.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright (c) 2016: Joaquim Garcia, and contributors
#
# Use of this source code is governed by an MIT-style license that can be found
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.

#=
File automatically generated with script:
Expand All @@ -16,7 +21,7 @@ Banner from header (xprs.h):
=#

const STRING_CONTROLS = Dict{String, Int32}(
const STRING_CONTROLS = Dict{String,Int32}(
"MPSRHSNAME" => 6001,
"MPSOBJNAME" => 6002,
"MPSRANGENAME" => 6003,
Expand All @@ -28,7 +33,7 @@ const STRING_CONTROLS = Dict{String, Int32}(
"COMPUTEEXECSERVICE" => 6022,
)

const DOUBLE_CONTROLS = Dict{String, Int32}(
const DOUBLE_CONTROLS = Dict{String,Int32}(
"MAXCUTTIME" => 8149,
"MAXSTALLTIME" => 8443,
"TUNERMAXTIME" => 8364,
Expand Down Expand Up @@ -115,7 +120,7 @@ const DOUBLE_CONTROLS = Dict{String, Int32}(
"BARHGEXTRAPOLATE" => 7166,
)

const INTEGER_CONTROLS = Dict{String, Int32}(
const INTEGER_CONTROLS = Dict{String,Int32}(
"EXTRAROWS" => 8004,
"EXTRACOLS" => 8005,
"LPITERLIMIT" => 8007,
Expand Down Expand Up @@ -386,7 +391,7 @@ const INTEGER_CONTROLS = Dict{String, Int32}(
"HEURSEARCHBACKGROUNDSELECT" => 8477,
)

const STRING_ATTRIBUTES = Dict{String, Int32}(
const STRING_ATTRIBUTES = Dict{String,Int32}(
"MATRIXNAME" => 3001,
"BOUNDNAME" => 3002,
"OBJNAME" => 3003, # kept for compatibility
Expand All @@ -396,7 +401,7 @@ const STRING_ATTRIBUTES = Dict{String, Int32}(
"UUID" => 3011,
)

const DOUBLE_ATTRIBUTES = Dict{String, Int32}(
const DOUBLE_ATTRIBUTES = Dict{String,Int32}(
"MIPSOLTIME" => 1371,
"TIME" => 1122,
"LPOBJVAL" => 2001,
Expand Down Expand Up @@ -431,7 +436,7 @@ const DOUBLE_ATTRIBUTES = Dict{String, Int32}(
"BARCGAP" => 4005,
)

const INTEGER_ATTRIBUTES = Dict{String, Int32}(
const INTEGER_ATTRIBUTES = Dict{String,Int32}(
"ROWS" => 1001,
"SETS" => 1004,
"PRIMALINFEAS" => 1007,
Expand Down

0 comments on commit 85d8c59

Please sign in to comment.