emhass 0.13.1__py3-none-any.whl → 0.13.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -122,13 +122,14 @@
122
122
  },
123
123
  "lp_solver": {
124
124
  "friendly_name": "Linear programming solver",
125
- "Description": "Set the name of the linear programming solver that will be used. Defaults to ‘COIN_CMD’. The options are ‘PULP_CBC_CMD’, ‘GLPK_CMD and ‘COIN_CMD’.",
125
+ "Description": "Set the name of the linear programming solver that will be used. Defaults to ‘COIN_CMD’. The options are ‘PULP_CBC_CMD’, ‘GLPK_CMD’, ‘HiGHS’, and ‘COIN_CMD’.",
126
126
  "input": "select",
127
127
  "select_options": [
128
128
  "default",
129
129
  "COIN_CMD",
130
130
  "PULP_CBC_CMD",
131
- "GLPK_CMD"
131
+ "GLPK_CMD",
132
+ "HiGHS"
132
133
  ],
133
134
  "default_value": "COIN_CMD"
134
135
  },
@@ -138,6 +139,12 @@
138
139
  "input": "text",
139
140
  "default_value": "/usr/bin/cbc"
140
141
  },
142
+ "num_threads": {
143
+ "friendly_name": "Number of threads to use for the LP solver",
144
+ "Description": "Set the number of threads for the LP solver to use, when supported by the solver. Defaults to 0 (autodetect)",
145
+ "input": "int",
146
+ "default_value": 0
147
+ },
141
148
  "lp_solver_timeout": {
142
149
  "friendly_name": "Linear programming solver timeout",
143
150
  "Description": "Set the maximum time (in seconds) for the LP solver. Defaults to 45.",