benchmarkToSmtlib function
Convert the given benchmark into a SMT-LIB string.
Implementation
String benchmarkToSmtlib({
required String name,
required String logic,
required String status,
required String attributes,
required Iterable<AST> assumptions,
required AST formula,
}) =>
currentContext.benchmarkToSmtlib(
name: name,
logic: logic,
status: status,
attributes: attributes,
assumptions: assumptions.toList(),
formula: formula,
);