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
 */

#include "Test/UnitTesting.hpp"
#include "Test/SyntaxSugar.hpp"
#include "Test/GenerationTester.hpp"

#include "Shell/FunctionDefinitionHandler.hpp"

#include "Inferences/FunctionDefinitionRewriting.hpp"

using namespace Test;

REGISTER_GEN_TESTER(Generation::GenerationTester<FunctionDefinitionRewriting>(FunctionDefinitionRewriting()))

namespace FunctionDefinitionRewritingTest {

/**
 * NECESSARY: We need to tell the tester which syntax sugar to import for creating terms & clauses.
 * See Test/SyntaxSugar.hpp for which kinds of syntax sugar are available
 */
#define MY_SYNTAX_SUGAR                                                                    \
  DECL_DEFAULT_VARS                                                                        \
  DECL_SORT(s)                                                                             \
  DECL_CONST(b, s)                                                                         \
  DECL_FUN_DEF(def_s,b())                                                                  \
  DECL_FUNC(r, {s}, s)                                                                     \
  DECL_TERM_ALGEBRA(s, {b, r})                                                             \
  DECL_FUNC(f, {s, s}, s)                                                                  \
  DECL_FUNC(g, {s}, s)                                                                     \
  DECL_PRED(p, {s})

auto setup = [](SaturationAlgorithm& salg) {
  salg.getFunctionDefinitionHandler().initAndPreprocessLate(salg.getProblem(),salg.getOptions());
};

ClauseStack fnDefContext() {
  __ALLOW_UNUSED(MY_SYNTAX_SUGAR);

  return {
    clause({ def_s(f(b,y), y) }),
    clause({ def_s(f(r(x),y), f(x,r(y))), x != b() }),
    clause({ def_s(f(r(x),y), f(x,y)), x == r(b()) }),

    clause({ def_s(g(b()), f(b(),b())) }),
    clause({ def_s(g(r(r(x))), f(r(x),g(x))), p(x), x != b() }),
  };
}

TEST_GENERATION(test_00,
    Generation::AsymmetricTest()
      .setup(setup)
      .options({ { "function_definition_rewriting", "on"} })
      .input( clause({  b != f(b, y), p(x) }))
      .expected(none())
    )

TEST_GENERATION(test_01,
    Generation::AsymmetricTest()
      .setup(setup)
      .context(fnDefContext())
      .options({ { "function_definition_rewriting", "on"} })
      .input( clause({  b != f(b, y), p(x) }))
      .expected(exactly(
              clause({  b != y,       p(x) })
      ))
    )

TEST_GENERATION(test_02,
    Generation::AsymmetricTest()
      .setup(setup)
      .context(fnDefContext())
      .options({ { "function_definition_rewriting", "on"} })
      .input( clause({  g(b)   == g(r(x)), p(x) }))
      .expected(exactly(
              clause({  f(b,b) == g(r(x)), p(x) })
      ))
    )

// no rewrites (matching is used instead of unification)
TEST_GENERATION(test_03,
    Generation::AsymmetricTest()
      .setup(setup)
      .context(fnDefContext())
      .options({ { "function_definition_rewriting", "on"} })
      .input( clause({  g(r(x)) == f(x, r(x)) }))
      .expected(none())
    )

// multiple rewritten positions in a literal and multiple rewrite rules
TEST_GENERATION(test_04,
    Generation::AsymmetricTest()
      .setup(setup)
      .context(fnDefContext())
      .options({ { "function_definition_rewriting", "on"} })
      .input( clause({  f(r(b),f(b, y)) == f(y, r(y)) }))
      .expected({
              clause({  f(r(b),y)       == f(y, r(y)) }),
              clause({  f(b,f(b, y))    == f(y, r(y)), b == r(b)}),
              clause({  f(b,r(f(b, y))) == f(y, r(y)), b != b})
      })
    )

// each literal is rewritten in a clause
TEST_GENERATION(test_05,
    Generation::AsymmetricTest()
      .setup(setup)
      .context(fnDefContext())
      .options({ { "function_definition_rewriting", "on"} })
      .input( clause({  g(r(r(r(b))))      != b, g(b)   == b }))
      .expected({
              clause({  f(r(r(b)),g(r(b))) != b, g(b)   == b, p(r(b)), r(b) != b() }),
              clause({  g(r(r(r(b))))      != b, f(b,b) == b })
      })
    )

// equational tautologies are discarded
TEST_GENERATION(test_06,
    Generation::AsymmetricTest()
      .setup(setup)
      .context(fnDefContext())
      .options({ { "function_definition_rewriting", "on"} })
      .input( clause({  f(b,b) == b  }))
      .expected(none())
    )

}