info.scce.addlib.codegenerator.PythonGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of addlib Show documentation
Show all versions of addlib Show documentation
The Java Library for Algebraic Decision Diagrams, Code Generation, and Layouting
package info.scce.addlib.codegenerator;
import info.scce.addlib.dd.LabelledRegularDD;
import info.scce.addlib.dd.RegularDD;
import java.io.PrintStream;
import java.util.List;
public class PythonGenerator> extends CodeGenerator {
@Override
public void generate(PrintStream out, List> roots) {
// TODO: implement or generate it
throw new RuntimeException("Not implemented");
}
}