vampire-sys 0.5.2

Low-level FFI bindings to the Vampire theorem prover (use the 'vampire' crate instead)
Documentation
/*
 * This file is part of the source code of the software program
 * Vampire. It is protected by applicable
 * copyright laws.
 *
 * This source code is distributed under the licence found here
 * https://vprover.github.io/license.html
 * and in the source directory
 */
#ifndef __SymbolOccurrenceReplacement__
#define __SymbolOccurrenceReplacement__

#include "Forwards.hpp"

#include "Kernel/Term.hpp"

using namespace Lib;
using namespace Kernel;
using namespace Shell;

/**
 * A helper class that performs replacement of all terms/literals of the form
 * f(s1, ..., sj,t1, ..., tk) by g(A1, ..., Am, s1, ..., sj,X1, ..., Xn, t1, ..., tk) 
 * for given f, g, A1, ..., Am, and X1,...,Xn
 */
// TODO: should a combination of MatcherUtils, SubstHelper be used instead?
class SymbolOccurrenceReplacement {
  public:
    /**
     * oldApplication = f(B1, ..., Bj, Y1, ..., Yk)
     * freshApplication = g(A1, ..., Am, B1, ..., Bj,X1, ..., Xn, Y1, ..., Yk)
     */
    SymbolOccurrenceReplacement(Term* oldApplication, Term* freshApplication)
      : _isPredicate(oldApplication->isLiteral()),
        _oldApplication(oldApplication),
        _freshApplication(freshApplication)
    {
      ASS(!oldApplication->isSpecial());
        // The implementation of this class doesn't requite argVars to be
        // non-empty, however, its use case expects this constraint
        //ASS(argVars || !env.signature->getFunction(symbol)->introduced());
    }
    Formula* process(Formula* formula);
    FormulaList* process(FormulaList* formulas);
    Term* process(Term* term);
    TermList process(TermList ts);

  private:
    const bool _isPredicate;
    Term* _oldApplication;
    Term* _freshApplication;
};

#endif // __SymbolOccurrenceReplacement__