Changeset b57b9b for src/base/discretization.hpp
- Timestamp:
- Sep 20, 2012, 1:54:01 PM (13 years ago)
- Children:
- c3acbb
- Parents:
- 2d3854
- File:
-
- 1 edited
-
src/base/discretization.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/base/discretization.hpp
r2d3854 rb57b9b 46 46 { 47 47 public: 48 Discretization() : 48 Discretization(bool register_ = true) : 49 Object("DISCRETIZATION", register_), 49 50 stencil(1.0), 50 51 order(2) 51 52 {} 52 53 53 Discretization(const int& order) : 54 Discretization(const int& order, bool register_ = true) : 55 Object("DISCRETIZATION", register_), 54 56 stencil(1.0), 55 57 order(order) 56 58 {} 57 59 58 Discretization(const Stencil& stencil_, const int& order) : 60 Discretization(const Stencil& stencil_, const int& order, bool register_ = true) : 61 Object("DISCRETIZATION", register_), 59 62 stencil(stencil_), 60 63 order(order)
Note:
See TracChangeset
for help on using the changeset viewer.
