Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * This file is part of the cvc5 project. 3 : : * 4 : : * Copyright (c) 2009-2026 by the authors listed in the file AUTHORS 5 : : * in the top-level source directory and their institutional affiliations. 6 : : * All rights reserved. See the file COPYING in the top-level source 7 : : * directory for licensing information. 8 : : * **************************************************************************** 9 : : * 10 : : * Notification class for the master equality engine 11 : : */ 12 : : 13 : : #include "theory/quantifiers/master_eq_notify.h" 14 : : 15 : : #include "theory/quantifiers_engine.h" 16 : : 17 : : namespace cvc5::internal { 18 : : namespace theory { 19 : : namespace quantifiers { 20 : : 21 : 22295 : MasterNotifyClass::MasterNotifyClass(QuantifiersEngine* qe) : d_quantEngine(qe) 22 : : { 23 : 22295 : } 24 : : 25 : 1907613 : void MasterNotifyClass::eqNotifyNewClass(TNode t) 26 : : { 27 : 1907613 : d_quantEngine->eqNotifyNewClass(t); 28 : 1907613 : } 29 : 12021054 : void MasterNotifyClass::eqNotifyMerge(TNode t1, TNode t2) 30 : : { 31 : 12021054 : d_quantEngine->eqNotifyMerge(t1, t2); 32 : 12021054 : } 33 : : 34 : : } // namespace quantifiers 35 : : } // namespace theory 36 : : } // namespace cvc5::internal