mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
27 lines
332 B
C
27 lines
332 B
C
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
simple_sat.h
|
|
|
|
Abstract:
|
|
|
|
Simple SAT solver using the Z3 SAT template.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2006-10-10.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _SIMPLE_SAT_H_
|
|
#define _SIMPLE_SAT_H_
|
|
|
|
void solve_cnf(const char * file);
|
|
|
|
#endif /* _SIMPLE_SAT_H_ */
|
|
|