Program Listing for File pp_objective.h

Return to documentation for file (include/fields2cover/objectives/pp_obj/pp_objective.h)

//=============================================================================
//    Copyright (C) 2021-2024 Wageningen University - All Rights Reserved
//                     Author: Gonzalo Mier
//                        BSD-3 License
//=============================================================================

#pragma once
#ifndef FIELDS2COVER_OBJECTIVES_PP_OBJECTIVE_H_
#define FIELDS2COVER_OBJECTIVES_PP_OBJECTIVE_H_

#include <vector>
#include "fields2cover/types.h"
#include "fields2cover/objectives/base_objective.h"

namespace f2c::obj {

class PPObjective : public BaseObjective<PPObjective> {
 public:
  virtual double computeCost(const F2CPath& path);
};


}  // namespace f2c::obj

#endif  // FIELDS2COVER_OBJECTIVES_PP_OBJECTIVE_H_