[GIT] ppl/ppl(sparse_matrices): Indentation fixes: replace tab characters with spaces.

Module: ppl/ppl Branch: sparse_matrices Commit: 7e98203132a0347e6441358d2d75f298f5ca0a5e URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=7e98203132a03...
Author: Marco Poletti poletti.marco@gmail.com Date: Mon Mar 22 14:01:44 2010 +0100
Indentation fixes: replace tab characters with spaces.
---
src/MIP_Problem.cc | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/MIP_Problem.cc b/src/MIP_Problem.cc index c3899f4..52a4817 100644 --- a/src/MIP_Problem.cc +++ b/src/MIP_Problem.cc @@ -2133,8 +2133,8 @@ PPL::MIP_Problem::choose_branching_variable(const MIP_Problem& lp, for (Variables_Set::const_iterator v_it = i_vars.begin(), v_end = i_vars.end(); v_it != v_end; ++v_it) { gcd_assign(gcd, - last_generator.coefficient(Variable(*v_it)), - last_generator_divisor); + last_generator.coefficient(Variable(*v_it)), + last_generator_divisor); if (gcd != last_generator_divisor) candidate_variables.insert(*v_it); } @@ -2301,10 +2301,10 @@ PPL::MIP_Problem::OK() const { if (external_space_dim < input_obj_function.space_dimension()) { #ifndef NDEBUG cerr << "The MIP_Problem and the objective function have " - << "incompatible space dimensions (" - << external_space_dim << " < " - << input_obj_function.space_dimension() << ")." - << endl; + << "incompatible space dimensions (" + << external_space_dim << " < " + << input_obj_function.space_dimension() << ")." + << endl; ascii_dump(cerr); #endif return false; @@ -2331,9 +2331,9 @@ PPL::MIP_Problem::OK() const { cerr << "The cached feasible point does not belong to " << "the feasible region of the MIP_Problem." << endl; - ascii_dump(cerr); + ascii_dump(cerr); #endif - return false; + return false; }
// Check that every integer declared variable is really integer. @@ -2341,7 +2341,7 @@ PPL::MIP_Problem::OK() const { if (!i_variables.empty()) { PPL_DIRTY_TEMP_COEFFICIENT(gcd); for (Variables_Set::const_iterator v_it = i_variables.begin(), - v_end = i_variables.end(); v_it != v_end; ++v_it) { + v_end = i_variables.end(); v_it != v_end; ++v_it) { gcd_assign(gcd, last_generator.coefficient(Variable(*v_it)), last_generator.divisor()); if (gcd != last_generator.divisor())
participants (1)
-
Marco Poletti