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
 */
/**
 * @file TermShifter.cpp
 */

#include "Kernel/HOL/TermShifter.hpp"
#include "Kernel/HOL/HOL.hpp"

std::pair<TermList, Option<unsigned>> TermShifter::shift(TermList term, int shiftBy) {
  TermShifter ts = TermShifter(shiftBy);
  TermList result = ts.transform(term);

  return {result, ts._minFreeIndex};
}

TermList TermShifter::transformSubterm(TermList t) {
  if (t.deBruijnIndex().isSome()) {
    unsigned index = t.deBruijnIndex().unwrap();
    if (index >= _cutOff) {
      auto j = index - _cutOff;
      _minFreeIndex = Option<unsigned>(std::min(_minFreeIndex.unwrapOr(j), j));

      // free index. lift
      if (_shiftBy != 0) {
        TermList sort = SortHelper::getResultSort(t.term());
        ASS(_shiftBy >= 0 || index >= std::abs(_shiftBy));
        return HOL::getDeBruijnIndex(static_cast<int>(index) + _shiftBy, sort);
      }
    }
  }
  return t;
}