| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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();
- }
- }
- }
|