Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tesselationhelpers.cpp

    r797126 r952f38  
    1010#include <fstream>
    1111
    12 #include "info.hpp"
     12#include "Helpers/Info.hpp"
    1313#include "linkedcell.hpp"
    14 #include "linearsystemofequations.hpp"
    15 #include "log.hpp"
     14#include "LinearAlgebra/linearsystemofequations.hpp"
     15#include "Helpers/Log.hpp"
    1616#include "tesselation.hpp"
    1717#include "tesselationhelpers.hpp"
    18 #include "vector.hpp"
    19 #include "Line.hpp"
     18#include "LinearAlgebra/Vector.hpp"
     19#include "LinearAlgebra/Line.hpp"
    2020#include "vector_ops.hpp"
    21 #include "verbose.hpp"
    22 #include "Plane.hpp"
    23 #include "Matrix.hpp"
     21#include "Helpers/Verbose.hpp"
     22#include "LinearAlgebra/Plane.hpp"
     23#include "LinearAlgebra/Matrix.hpp"
    2424
    2525void GetSphere(Vector * const center, const Vector &a, const Vector &b, const Vector &c, const double RADIUS)
     
    425425          }
    426426        } else {
    427           eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << ","
    428             << LC->n[2] << " is invalid!" << endl;
     427          DoeLog(1) && (eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << "," << LC->n[2] << " is invalid!" << endl);
    429428        }
    430429      }
     
    481480          }
    482481        } else {
    483           eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << ","
    484             << LC->n[2] << " is invalid!" << endl;
     482          DoeLog(1) && (eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << "," << LC->n[2] << " is invalid!" << endl);
    485483        }
    486484      }
Note: See TracChangeset for help on using the changeset viewer.