swh:1:snp:7a4cd2a5ec73a061be17605597c4b1660b799026
Tip revision: 9eb375d26241062440516a8120b19e04080223ed authored by Max Göttlicher on 18 August 2022, 13:21:20 UTC
fixed printing issues
fixed printing issues
Tip revision: 9eb375d
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 {
bool solve_pds(PdsState&, bool output = false, double timeLimit = 10 * 60);
bool solve_pds(const PowerGrid &graph, map<PowerGrid::vertex_descriptor, PmuState> &active, bool output = false, double timeLimit = 10 * 60);
} //namespace pds
#endif //PDS_GUROBI_SOLVE_HPP