3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

initial commit for interpolation

This commit is contained in:
Ken McMillan 2013-03-03 20:45:58 -08:00
parent 197b2e8ddb
commit 68fb01c206
15 changed files with 3005 additions and 1 deletions

15
src/interp/iz3foci.h Executable file
View file

@ -0,0 +1,15 @@
/* Copyright 2011 Microsoft Research. */
#ifndef IZ3FOCI_H
#define IZ3FOCI_H
#include "iz3secondary.h"
/** Secondary prover based on Cadence FOCI. */
class iz3foci {
public:
static iz3secondary *create(iz3mgr *mgr, int num, int *parents);
};
#endif