NonEvolutionEval.cs 930 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using WeEngine.Packages;
  3. using WeEngine.Strategy.Eval;
  4. namespace WeEngine.Module
  5. {
  6. public class NonEvolutionEval : IEvalStrategy
  7. {
  8. public void MatchKeyWord(NodeBase node)
  9. {
  10. throw new NotImplementedException();
  11. }
  12. public decimal GetActualScore(NodeBase node)
  13. {
  14. throw new NotImplementedException();
  15. }
  16. public decimal GetActualWeights(NodeBase node)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public decimal GetNodeFullScore(NodeBase node)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. public decimal GetChildFullWeights(NodeBase node)
  25. {
  26. throw new NotImplementedException();
  27. }
  28. public string GetEvalQualitativeResult(PackageNode node, string exp)
  29. {
  30. throw new NotImplementedException();
  31. }
  32. }
  33. }