Skip to content

Commit

Permalink
Comment out unused model input parameters in lattice EWSB constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
jhyeon committed Aug 6, 2014
1 parent 9df14bc commit f2ffc6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions templates/lattice_ewsb_constraint.cpp.in
Expand Up @@ -36,13 +36,15 @@ using namespace @ModelName@_lattice_info;
{
}

#if 0
@ModelName@_ewsb_constraint<Lattice>::@ModelName@_ewsb_constraint
(const @ModelName@_input_parameters& input_) :
@ModelName@_ewsb_constraint_(),
CompoundConstraint<Lattice>(members)
{
input = &input_;
}
#endif

@ModelName@_ewsb_constraint<Lattice>::~@ModelName@_ewsb_constraint()
{
Expand Down
4 changes: 2 additions & 2 deletions templates/lattice_ewsb_constraint.hpp.in
Expand Up @@ -40,7 +40,7 @@ struct @ModelName@_ewsb_constraint_ {
@ModelName@_ewsb_constraint_();
~@ModelName@_ewsb_constraint_();
std::vector<Constraint<Lattice>*> members;
const @ModelName@_input_parameters *input;
// const @ModelName@_input_parameters *input;
};

template<>
Expand All @@ -49,7 +49,7 @@ class @ModelName@_ewsb_constraint<Lattice> :
public CompoundConstraint<Lattice> {
public:
@ModelName@_ewsb_constraint();
@ModelName@_ewsb_constraint(const @ModelName@_input_parameters&);
// @ModelName@_ewsb_constraint(const @ModelName@_input_parameters&);
virtual ~@ModelName@_ewsb_constraint();
};

Expand Down

0 comments on commit f2ffc6b

Please sign in to comment.