using System; using WeEngine.Packages; using WeEngine.Strategy.Eval; namespace WeEngine.Module { public class NonEvolutionEval : IEvalStrategy { public void MatchKeyWord(NodeBase node) { throw new NotImplementedException(); } public decimal GetActualScore(NodeBase node) { throw new NotImplementedException(); } public decimal GetActualWeights(NodeBase node) { throw new NotImplementedException(); } public decimal GetNodeFullScore(NodeBase node) { throw new NotImplementedException(); } public decimal GetChildFullWeights(NodeBase node) { throw new NotImplementedException(); } public string GetEvalQualitativeResult(PackageNode node, string exp) { throw new NotImplementedException(); } } }