@@ -689,14 +689,6 @@ open class KContext(
689689 createNoSimplify = ::mkAndNoSimplify
690690 )
691691
692- @Deprecated(
693- " NoFlat builders are deprecated" ,
694- replaceWith = ReplaceWith (" mkAnd(args, flat = false)" ),
695- level = DeprecationLevel .ERROR
696- )
697- open fun mkAndNoFlat (args : List <KExpr <KBoolSort >>): KExpr <KBoolSort > =
698- mkAnd(args, flat = false )
699-
700692 /* *
701693 * Create boolean binary AND expression.
702694 *
@@ -715,14 +707,6 @@ open class KContext(
715707 createNoSimplify = ::mkAndNoSimplify
716708 )
717709
718- @Deprecated(
719- " NoFlat builders are deprecated" ,
720- replaceWith = ReplaceWith (" mkAnd(lhs, rhs, flat = false)" ),
721- level = DeprecationLevel .ERROR
722- )
723- open fun mkAndNoFlat (lhs : KExpr <KBoolSort >, rhs : KExpr <KBoolSort >): KExpr <KBoolSort > =
724- mkAnd(lhs, rhs, flat = false )
725-
726710 open fun mkAndNoSimplify (args : List <KExpr <KBoolSort >>): KAndExpr =
727711 if (args.size == 2 ) {
728712 mkAndNoSimplify(args.first(), args.last())
@@ -759,14 +743,6 @@ open class KContext(
759743 createNoSimplify = ::mkOrNoSimplify
760744 )
761745
762- @Deprecated(
763- " NoFlat builders are deprecated" ,
764- replaceWith = ReplaceWith (" mkOr(args, flat = false)" ),
765- level = DeprecationLevel .ERROR
766- )
767- open fun mkOrNoFlat (args : List <KExpr <KBoolSort >>): KExpr <KBoolSort > =
768- mkOr(args, flat = false )
769-
770746 /* *
771747 * Create boolean binary OR expression.
772748 *
@@ -785,14 +761,6 @@ open class KContext(
785761 createNoSimplify = ::mkOrNoSimplify
786762 )
787763
788- @Deprecated(
789- " NoFlat builders are deprecated" ,
790- replaceWith = ReplaceWith (" mkOr(lhs, rhs, flat = false)" ),
791- level = DeprecationLevel .ERROR
792- )
793- open fun mkOrNoFlat (lhs : KExpr <KBoolSort >, rhs : KExpr <KBoolSort >): KExpr <KBoolSort > =
794- mkOr(lhs, rhs, flat = false )
795-
796764 open fun mkOrNoSimplify (args : List <KExpr <KBoolSort >>): KOrExpr =
797765 if (args.size == 2 ) {
798766 mkOrNoSimplify(args.first(), args.last())
0 commit comments