-
Notifications
You must be signed in to change notification settings - Fork 0
/
volsay.json
100 lines (100 loc) · 2.2 KB
/
volsay.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"Problem": {
"Name": "volsay",
"Reference": "https://www.ibm.com/support/knowledgecenter/en/SSSA5P_12.5.0/ilog.odms.ide.help/OPL_Studio/opllanguser/topics/opl_languser_shortTour_LP_prodplanning.html",
"Author": "Jeremy A. Bloom (jeremyblmca@gmail.com)",
"Notices": "Copyright © 2019 Jeremy A. Bloom"
},
"Input_Data_Model": {},
"Output_Data_Model": {},
"Data": {},
"Variables": [
{
"Name": "gas",
"Type": "Continuous",
"Index": "Self",
"Bounds": "Non-negative"
},
{
"Name": "chloride",
"Type": "Continuous",
"Index": "Self",
"Bounds": "Non-negative"
}
],
"Constraints": [
{
"Name": "ctMaxTotal",
"Type": "Linear",
"Index": "Self",
"Sense": "<=",
"RHS": 50.0
},
{
"Name": "ctMaxTotal2",
"Type": "Linear",
"Index": "Self",
"Sense": "<=",
"RHS": 180.0
},
{
"Name": "ctChloride",
"Type": "Linear",
"Index": "Self",
"Sense": "<=",
"RHS": 40.0
}
],
"Decision_Expressions": [
{
"Name": "total",
"Type": "Linear",
"Index": "Self",
"Sense": "None"
}
]
"Coefficients": [
{
"Name": "total_gas",
"Decision_Expressions": "total",
"Variables": "gas",
"Entries": 40.0
},
{
"Name": "total_chloride",
"Decision_Expressions": "total",
"Variables": "chloride",
"Entries": 50.0
},
{
"Name": "ctMaxTotal_gas",
"Constraints": "ctMaxTotal",
"Variables": "gas",
"Entries": 1.0
},
{
"Name": "ctMaxTotal_chloride",
"Constraints": "ctMaxTotal",
"Variables": "chloride",
"Entries": 1.0
},
{
"Name": "ctMaxTotal2_gas",
"Constraints": "ctMaxTotal2",
"Variables": "gas",
"Entries": 3.0
},
{
"Name": "ctMaxTotal2_chloride",
"Constraints": "ctMaxTotal2",
"Variables": "chloride",
"Entries": 4.0
},
{
"Name": "ctMaxChloride_chloride",
"Constraints": "ctMaxChloride",
"Variables": "chloride",
"Entries": 1.0
}
]
}