diff --git a/ortools/bop/integral_solver.cc b/ortools/bop/integral_solver.cc index 1a6c2c41420..8407dd8d037 100644 --- a/ortools/bop/integral_solver.cc +++ b/ortools/bop/integral_solver.cc @@ -39,7 +39,6 @@ #include "ortools/util/fp_utils.h" #include "ortools/util/strong_integers.h" #include "ortools/util/time_limit.h" -// MOE:end_strip namespace operations_research { namespace bop { diff --git a/ortools/linear_solver/scip_interface.cc b/ortools/linear_solver/scip_interface.cc index a7c8f5b6ebc..3ab2afe29c9 100644 --- a/ortools/linear_solver/scip_interface.cc +++ b/ortools/linear_solver/scip_interface.cc @@ -1122,13 +1122,7 @@ class ScipMPCallbackContext : public MPCallbackContext { ScipConstraintHandlerForMPCallback::ScipConstraintHandlerForMPCallback( MPCallback* mp_callback) - : ScipConstraintHandler( - // MOE(begin-strip): - {/*name=*/"mp_solver_constraint_handler", - /*description=*/ - "A single constraint handler for all MPSolver models."} - // MOE(end-strip-and-replace): ScipConstraintHandlerDescription() - ), + : ScipConstraintHandler(ScipConstraintHandlerDescription()), mp_callback_(mp_callback) {} std::vector diff --git a/ortools/math_opt/tools/mathopt_solve_main.cc b/ortools/math_opt/tools/mathopt_solve_main.cc index 1a1a68a5ef2..41cf7938be7 100644 --- a/ortools/math_opt/tools/mathopt_solve_main.cc +++ b/ortools/math_opt/tools/mathopt_solve_main.cc @@ -24,11 +24,6 @@ // mathopt_solve --input_file model.pb --solve_parameters 'threads: 4' // * Specify the file format: // mathopt_solve --input_file model --format=mathopt -// MOE: begin_strip -// * Solve a MIPLIB problem: -// mathopt_solve --input_file -// /google/src/head/depot/operations_research_data/MIP_MIPLIB/miplib2017/10teams.mps.gz -// MOE: end_strip #include #include #include