remove internal urls

This commit is contained in:
Laurent Perron
2023-10-16 09:07:56 +02:00
parent 18b5b80010
commit 9702ee7db8
2 changed files with 1 additions and 6 deletions

View File

@@ -11,8 +11,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// See go/mpsolver-callbacks for documentation on how to use this file.
#ifndef OR_TOOLS_LINEAR_SOLVER_LINEAR_SOLVER_CALLBACK_H_
#define OR_TOOLS_LINEAR_SOLVER_LINEAR_SOLVER_CALLBACK_H_
@@ -137,7 +135,6 @@ class MPCallbackContext {
// Extend this class with model specific logic, and register through
// MPSolver::SetCallback, passing a pointer to this object.
//
// See go/mpsolver-callbacks for additional documentation.
class MPCallback {
public:
// If you intend to call call MPCallbackContext::AddCut(), you must set

View File

@@ -11,12 +11,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.
// See go/scip-callbacks for documentation.
//
// This file provides a simplified C++ API for using callbacks with SCIP and
// MPSolver. It can be used directly by users, although in most cases, the
// mp_callback.h should be sufficient (in fact, SCIP's mp_callback.h
// implementation is built on top of this). See also go/mpsolver-callbacks.
// implementation is built on top of this).
#ifndef OR_TOOLS_LINEAR_SOLVER_SCIP_CALLBACK_H_
#define OR_TOOLS_LINEAR_SOLVER_SCIP_CALLBACK_H_
@@ -115,7 +114,6 @@ struct CallbackRangeConstraint {
bool local = false;
};
// See go/scip-callbacks for additional documentation.
template <typename Constraint>
class ScipConstraintHandler {
public: