Skip to content

Commit

Permalink
file
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Sep 2, 2020
1 parent 1163908 commit daf7e9e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/sat/smt/sat_th.cpp
Original file line number Diff line number Diff line change
@@ -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 "sat/smt/euf_solver.h"

namespace euf {


th_euf_solver::th_euf_solver(euf::solver& ctx, euf::theory_id id):
th_solver(ctx.get_manager(), id),
ctx(ctx)
{}

theory_var th_euf_solver::get_th_var(expr* e) const {
return get_th_var(ctx.get_enode(e));
}





}

0 comments on commit daf7e9e

Please sign in to comment.