mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
parent
c6135a40d5
commit
872fd5e9ff
9 changed files with 125 additions and 43 deletions
37
src/sat/smt/sat_th.cpp
Normal file
37
src/sat/smt/sat_th.cpp
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*++
|
||||
Copyright (c) 2020 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
sat_th.cpp
|
||||
|
||||
Abstract:
|
||||
|
||||
Theory plugins
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2020-08-25
|
||||
|
||||
--*/
|
||||
#include "sat/smt/sat_th.h"
|
||||
#include "util/top_sort.h"
|
||||
|
||||
namespace sat {
|
||||
|
||||
/*
|
||||
* \brief add dependency: dst depends on src.
|
||||
*/
|
||||
void th_dependencies::add(euf::enode* src, euf::enode* dst) {
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* \brief sort dependencies.
|
||||
*/
|
||||
void th_dependencies::sort() {
|
||||
top_sort<euf::enode> top;
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue