1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-09-24 12:22:34 +00:00

Move the StandardPlugin into a "standard" package along with the ops.

This commit is contained in:
2017-09-23 22:16:44 -07:00
parent b4214f5714
commit e05b2ac8d5
7 changed files with 10 additions and 7 deletions

View File

@@ -1,10 +1,13 @@
package org.nwapw.abacus.plugin;
package org.nwapw.abacus.plugin.standard;
import org.nwapw.abacus.context.MutableEvaluationContext;
import org.nwapw.abacus.function.*;
import org.nwapw.abacus.number.NaiveNumber;
import org.nwapw.abacus.number.NumberInterface;
import org.nwapw.abacus.number.PreciseNumber;
import org.nwapw.abacus.plugin.NumberImplementation;
import org.nwapw.abacus.plugin.Plugin;
import org.nwapw.abacus.plugin.PluginManager;
import org.nwapw.abacus.plugin.standard.operator.*;
import java.util.ArrayList;