/usr/include/cvc3/theory_simulate.h is in libcvc3-dev 2.4.1-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | /*****************************************************************************/
/*!
*\file theory_simulate.h
*\brief Implementation of a symbolic simulator
*
* Author: Sergey Berezin
*
* Created: Tue Oct 7 10:13:15 2003
*
* <hr>
*
* License to use, copy, modify, sell and/or distribute this software
* and its documentation for any purpose is hereby granted without
* royalty, subject to the terms and conditions defined in the \ref
* LICENSE file provided with this distribution.
*
* <hr>
*
*/
/*****************************************************************************/
#ifndef _cvc3__include__theory_simulate_h_
#define _cvc3__include__theory_simulate_h_
#include "theory.h"
namespace CVC3 {
class SimulateProofRules;
/*****************************************************************************/
/*!
* \class TheorySimulate
* \ingroup Theories
* \brief "Theory" of symbolic simulation.
*
* Author: Sergey Berezin
*
* Created: Tue Oct 7 10:13:15 2003
*
* This theory owns the SIMULATE operator. It's job is to replace the above
* expressions by their definitions using rewrite rules.
*/
/*****************************************************************************/
class TheorySimulate: public Theory {
private:
//! Our local proof rules
SimulateProofRules* d_rules;
//! Create proof rules for this theory
SimulateProofRules* createProofRules();
public:
//! Constructor
TheorySimulate(TheoryCore* core);
//! Destructor
~TheorySimulate();
// The required Theory API functions
void assertFact(const Theorem& e) { }
void checkSat(bool fullEffort) { }
Theorem rewrite(const Expr& e);
void computeType(const Expr& e);
Expr computeTCC(const Expr& e);
Expr parseExprOp(const Expr& e);
ExprStream& print(ExprStream& os, const Expr& e);
}; // end of class TheorySimulate
} // end of namespace CVC3
#endif
|