n-Dimensional Fast Methods  0.7
 All Classes Functions Variables Typedefs Pages
sfmmstar.hpp
1 
29 #ifndef SFMMSTAR_HPP_
30 #define SFMMSTAR_HPP_
31 
32 #include <iostream>
33 #include <cmath>
34 #include <algorithm>
35 #include <numeric>
36 #include <fstream>
37 #include <array>
38 
39 #include <fast_methods/fm/sfmm.hpp>
40 
41 template < class grid_t, class cell_t = FMCell> class SFMMStar : public SFMM<grid_t, cell_t> {
42  public:
43  SFMMStar(HeurStrategy h = TIME) : SFMM<grid_t, cell_t>("SFMM*", h) {}
44  SFMMStar(const char * name, HeurStrategy h = TIME) : SFMM<grid_t, cell_t>(name, h){}
45 };
46 
47 #endif /* SFMMSTAR_HPP_*/
Implements the Simplified Fast Marching Method, encapsulating FMM with a priority queue...
Definition: sfmm.hpp:44