Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef CLASP_CLASP_FWD_H_INCLUDED
00021 #define CLASP_CLASP_FWD_H_INCLUDED
00022
00023 namespace Clasp {
00024 class SharedContext;
00025 class MinimizeBuilder;
00026 class SharedMinimizeData;
00027 class Configuration;
00028 class Constraint;
00029 struct Problem_t {
00030 enum Type { SAT = 0, PB = 1, ASP = 2 };
00031 enum Format { DIMACS = 0, OPB = 1, LPARSE = 2 };
00032 static Type format2Type(Format f) { return static_cast<Type>(f); }
00033 };
00034 typedef Problem_t::Type ProblemType;
00035 typedef Problem_t::Format InputFormat;
00036 class ProgramBuilder;
00037 class SatBuilder;
00038 class PBBuilder;
00039 class StreamSource;
00040 namespace Asp {
00041 class LogicProgram;
00042 class Preprocessor;
00043 class LpStats;
00044 class Rule;
00045 class PrgAtom;
00046 class PrgBody;
00047 class PrgDisj;
00048 class PrgHead;
00049 class PrgNode;
00050 struct PrgEdge;
00051 class SccChecker;
00052 }}
00053
00054
00055 #endif