Skip to content

Commit

Permalink
[issue1082] remove unused field.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Feb 8, 2024
1 parent c4e15fd commit fa28521
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ OperatorCountingHeuristic::OperatorCountingHeuristic(
utils::Verbosity verbosity)
: Heuristic(transform, cache_estimates, description, verbosity),
constraint_generators(constraint_generators),
use_integer_operator_counts(use_integer_operator_counts),
lp_solver(lp_solver_type) {
lp_solver.set_mip_gap(0);
named_vector::NamedVector<lp::LPVariable> variables;
Expand Down
1 change: 0 additions & 1 deletion src/search/operator_counting/operator_counting_heuristic.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ class ConstraintGenerator;

class OperatorCountingHeuristic : public Heuristic {
std::vector<std::shared_ptr<ConstraintGenerator>> constraint_generators;
const bool use_integer_operator_counts;
lp::LPSolver lp_solver;
protected:
virtual int compute_heuristic(const State &ancestor_state) override;
Expand Down

0 comments on commit fa28521

Please sign in to comment.