Algorithm Separator (Calculator) 
Description 
Converts an input itemstack into two output itemstacks.
Identifier 
Refer to this via any of the following:
mods.calculator.algorithm_separator/* Used as page default */
mods.calculator.algorithmseparator
mods.calculator.algorithmSeparator
mods.calculator.AlgorithmSeparatorAdding Recipes 
Add the given recipe to the recipe list:
groovymods.calculator.algorithm_separator.add(CalculatorRecipe)
Recipe Builder 
Just like other recipe types, the Algorithm Separator also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
Recipe Builder
Create the Recipe Builder.
groovymods.calculator.algorithm_separator.recipeBuilder()
IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 1.groovyinput(IIngredient) input(IIngredient...) input(Collection<IIngredient>)ItemStackList. Sets the item outputs of the recipe. Requires exactly 2.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
First validates the builder, returning
nulland outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returnsnullorsonar.calculator.mod.common.recipes.CalculatorRecipe).groovyregister()
Example
mods.calculator.algorithm_separator.recipeBuilder()
    .input(item('minecraft:clay'))
    .output(item('minecraft:diamond'), item('minecraft:diamond'))
    .register()Removing Recipes 
Removes the given recipe from the recipe list:
groovymods.calculator.algorithm_separator.remove(CalculatorRecipe)Removes all recipes that match the given input:
groovymods.calculator.algorithm_separator.removeByInput(IIngredient)Removes all recipes that match the given output:
groovymods.calculator.algorithm_separator.removeByOutput(IIngredient)Removes all registered recipes:
groovymods.calculator.algorithm_separator.removeAll()
Example
mods.calculator.algorithm_separator.removeByInput(item('calculator:tanzaniteleaves'))
mods.calculator.algorithm_separator.removeByOutput(item('calculator:weakeneddiamond'))
mods.calculator.algorithm_separator.removeAll()Getting the value of recipes 
Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
groovymods.calculator.algorithm_separator.streamRecipes()
