piccard.hpp 159 B

1234567891011
  1. #ifndef PICCARD_HPP
  2. #define PICCARD_HPP
  3. class Piccard{
  4. private:
  5. public:
  6. Piccard(Geometry& G);
  7. bool eval(const Solution& S_in,Solution& S_out);
  8. };
  9. #endif