1919require './wrappers/demo'
2020require './wrappers/vroom'
2121require './wrappers/ortools'
22- require './wrappers/unconstrained_initialization'
2322
2423require './lib/cache_manager'
2524require './util/logger'
@@ -38,7 +37,6 @@ module OptimizerWrapper
3837 ORTOOLS_EXEC =
3938 'LD_LIBRARY_PATH=../or-tools/dependencies/install/lib/:../or-tools/lib/ ../optimizer-ortools/tsp_simple' . freeze
4039 ORTOOLS = Wrappers ::Ortools . new ( tmp_dir : TMP_DIR , exec_ortools : ORTOOLS_EXEC )
41- UNCONSTRAINED_INITIALIZATION = Wrappers ::UnconstrainedInitialization . new ( tmp : TMP_DIR )
4240
4341 PARAMS_LIMIT = { points : 100000 , vehicles : 1000 } . freeze
4442 QUOTAS = [ { daily : 100000 , monthly : 1000000 , yearly : 10000000 } ] . freeze # Only taken into account if REDIS_COUNT
@@ -61,7 +59,6 @@ module OptimizerWrapper
6159 demo : DEMO ,
6260 vroom : VROOM ,
6361 ortools : ORTOOLS ,
64- unconstrained_initialization : UNCONSTRAINED_INITIALIZATION ,
6562 } ,
6663 profiles : {
6764 demo : {
@@ -72,14 +69,6 @@ module OptimizerWrapper
7269 params_limit : PARAMS_LIMIT ,
7370 quotas : QUOTAS , # Only taken into account if REDIS_COUNT
7471 } ,
75- unconstrained_initialization : {
76- queue : 'DEFAULT' ,
77- services : {
78- vrp : [ :unconstrained_initialization ]
79- } ,
80- params_limit : PARAMS_LIMIT ,
81- quotas : QUOTAS ,
82- } ,
8372 } ,
8473 solve : {
8574 synchronously : ENV [ 'OPTIM_SOLVE_SYNCHRONOUSLY' ] == 'true' ,
0 commit comments