Program Listing for File epec_fullenum.h
↰ Return to documentation for file (include/games/algorithms/EPEC/epec_fullenum.h
)
/* #############################################
* This file is part of
* ZERO
*
* Copyright (c) 2020
* Released under the Creative Commons
* CC BY-NC-SA 4.0 License
*
* Find out more at
* https://github.com/ds4dm/ZERO
* #############################################*/
#pragma once
#include "epec_polybase.h"
#include "zero.h"
namespace Algorithms::EPEC {
class FullEnumeration : public PolyBase {
public:
FullEnumeration(GRBEnv *env, Game::EPEC *EPECObject) : PolyBase(env, EPECObject){};
void solve();
};
} // namespace Algorithms