Class ConstantFolding

java.lang.Object
com.soulfiremc.server.script.ConstantFolding

public final class ConstantFolding extends Object
Constant folding optimization: evaluates subgraphs with all-constant inputs at build time. Replaces folded nodes with pre-computed constant values.
  • Method Details

    • fold

      public static ScriptGraph fold(ScriptGraph graph)
      Identifies and folds constant subgraphs in the given graph. Returns a new ScriptGraph with constant nodes replacing folded subgraphs, or the original graph if no folding was possible.