3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-27 15:05:35 -07:00
parent c6135a40d5
commit 872fd5e9ff
9 changed files with 125 additions and 43 deletions

37
src/sat/smt/sat_th.cpp Normal file
View 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;
}
}