Changeset 12290 for branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/HeuristicLab.Problems.GrammaticalOptimization/Problems/RoyalPhraseSequenceProblem.cs
- Timestamp:
- 04/07/15 14:31:06 (10 years ago)
- Location:
- branches/HeuristicLab.Problems.GrammaticalOptimization-gkr
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/HeuristicLab.Problems.GrammaticalOptimization/Problems/RoyalPhraseSequenceProblem.cs
r12099 r12290 3 3 using System.Diagnostics; 4 4 using System.Linq; 5 using System.Runtime.InteropServices; 5 6 using System.Text; 6 7 using System.Text.RegularExpressions; … … 148 149 } 149 150 150 public IEnumerable<Feature> GetFeatures(string phrase) { 151 throw new NotImplementedException(); 151 public IEnumerable<Feature> GetFeatures(string phrase) 152 { 153 return new Feature[] {new Feature(phrase, 1.0)}; 152 154 } 153 155
Note: See TracChangeset
for help on using the changeset viewer.