mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 00:35:47 +00:00
32 lines
421 B
C++
Executable file
32 lines
421 B
C++
Executable file
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
iz3foci.h
|
|
|
|
Abstract:
|
|
|
|
Implements a secondary solver using foci2.
|
|
|
|
Author:
|
|
|
|
Ken McMillan (kenmcmil)
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#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
|