Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tesselationhelpers.cpp

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