swh:1:snp:7a4cd2a5ec73a061be17605597c4b1660b799026
Tip revision: c7bbaa279bdeb6124b591020b1d7577391139bf5 authored by Max Göttlicher on 24 November 2022, 12:34:21 UTC
fixed more gcc errors and warnings
fixed more gcc errors and warnings
Tip revision: c7bbaa2
gurobi_solve.hpp
//
// Created by max on 25.07.22.
//
#ifndef PDS_GUROBI_SOLVE_HPP
#define PDS_GUROBI_SOLVE_HPP
#include <range/v3/all.hpp>
#include "pds.hpp"
namespace pds {
SolveState solve_pds(PdsState&, bool output = false, double timeLimit = 10 * 60);
SolveState solveDominatingSet(PdsState& state, bool output = false, double timeLimit = 10 * 60);
SolveState solveBrimkovExpanded(PdsState& state, bool output = false, double timeLimit = 10 * 60);
SolveState solveBrimkov(PdsState& state, bool output = false, double timeLimit = 10 * 60);
SolveState solveJovanovic(PdsState& state, bool output = false, double timeLimit = 10 * 60);
} //namespace pds
#endif //PDS_GUROBI_SOLVE_HPP