Ignore:
Timestamp:
Sep 20, 2012, 1:54:01 PM (13 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
c3acbb
Parents:
2d3854
Message:

vmg: Simplified API.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@2034 5161e1c8-67bf-11de-9fd5-51895aff932f

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/base/discretization.hpp

    r2d3854 rb57b9b  
    4646{
    4747public:
    48   Discretization() :
     48  Discretization(bool register_ = true) :
     49    Object("DISCRETIZATION", register_),
    4950    stencil(1.0),
    5051    order(2)
    5152  {}
    5253
    53   Discretization(const int& order) :
     54  Discretization(const int& order, bool register_ = true) :
     55    Object("DISCRETIZATION", register_),
    5456    stencil(1.0),
    5557    order(order)
    5658  {}
    5759
    58   Discretization(const Stencil& stencil_, const int& order) :
     60  Discretization(const Stencil& stencil_, const int& order, bool register_ = true) :
     61    Object("DISCRETIZATION", register_),
    5962    stencil(stencil_),
    6063    order(order)
Note: See TracChangeset for help on using the changeset viewer.