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 Schedules.hpp
 * Defines class Schedules.
 */

#ifndef __Schedules__
#define __Schedules__

#include "Lib/Stack.hpp"
#include "Shell/Property.hpp"

namespace CASC {

typedef Lib::Stack<std::string> Schedule;

class Schedules
{
public:
  static void getScheduleFromFile(const std::string& filename, Schedule& quick);

  static void getCasc2024Schedule(const Shell::Property& property, Schedule& quick);
  static void getCascSat2024Schedule(const Shell::Property& property, Schedule& quick);

  static void getCasc2025Schedule(const Shell::Property& property, Schedule& quick, Schedule& champions);
  static void getCascSat2025Schedule(const Shell::Property& property, Schedule& quick, Schedule& champions);

  static void getSmtcomp2018Schedule(const Shell::Property& property, Schedule& quick);

  static void getLtb2017Hh4Schedule(const Shell::Property& property, Schedule& sched);
  static void getLtb2017IsaSchedule(const Shell::Property& property, Schedule& sched);
  static void getLtb2017HllSchedule(const Shell::Property& property, Schedule& sched);
  static void getLtb2017MzrSchedule(const Shell::Property& property, Schedule& sched);
  static void getLtb2017DefaultSchedule(const Shell::Property& property, Schedule& sched);

  static void getInductionSchedule(const Shell::Property& property, Schedule& quick);
  static void getIntegerInductionSchedule(const Shell::Property& property, Schedule& quick);
  static void getIntindOeisSchedule(const Shell::Property& property, Schedule& quick);
  static void getStructInductionSchedule(const Shell::Property& property, Schedule& quick);
  static void getStructInductionTipSchedule(const Shell::Property& property, Schedule& quick);

  static void getAlascaAwareAriSchedule(const Shell::Property& property, Schedule& quick);

  static void getSnakeTptpUnsSchedule(const Shell::Property& property, Schedule& quick);
  static void getSnakeTptpSatSchedule(const Shell::Property& property, Schedule& quick);
};

}

#endif // __Schedules__