Revision cfdc7053f2bba3965c665328fc1d014f44cab16b authored by Lonca Emmanuel on 17 March 2021, 12:16:06 UTC, committed by Lonca Emmanuel on 17 March 2021, 12:16:06 UTC
1 parent 76983f8
DefaultGroundedSemanticsSolver.h
/*
* DefaultGroundedSemanticsSolver.h
*
* Created on: 22 juil. 2016
* Author: lonca
*/
#ifndef SRC_SOLVERS_DEFAULTGROUNDEDSEMANTICSSOLVER_H_
#define SRC_SOLVERS_DEFAULTGROUNDEDSEMANTICSSOLVER_H_
#include "SemanticsProblemSolver.h"
#include "SatEncodingHelper.h"
namespace CoQuiAAS {
class DefaultGroundedSemanticsSolver : public SemanticsProblemSolver {
public:
DefaultGroundedSemanticsSolver(std::shared_ptr<SatSolver> solver, Attacks &attacks, VarMap &varMap, TaskType taskType, SolverOutputFormatter &formatter);
void init();
void computeOneExtension();
void computeAllExtensions();
void isCredulouslyAccepted();
void isSkepticallyAccepted();
virtual ~DefaultGroundedSemanticsSolver();
private:
std::shared_ptr<SatSolver> solver;
SatEncodingHelper* helper;
};
}
#endif /* SRC_SOLVERS_DEFAULTGROUNDEDSEMANTICSSOLVER_H_ */
![swh spinner](/static/img/swh-spinner.gif)
Computing file changes ...