- Timestamp:
- 07/03/09 18:41:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.Charting/3.3/BubbleChart.cs
r2132 r2133 59 59 private Results results; 60 60 private Dictionary<IPrimitive, ResultsEntry> primitiveToEntryDictionary; 61 //private Dictionary<ResultsEntry, IList<IPrimitive>> entryToPrimitivesDictionary;62 61 private Random random = new Random(); 63 62 private Group points; … … 67 66 records = new List<ResultsEntry>(); 68 67 primitiveToEntryDictionary = new Dictionary<IPrimitive, ResultsEntry>(); 69 //entryToPrimitivesDictionary = new Dictionary<ResultsEntry, IList<IPrimitive>>();70 68 this.results = results; 71 69 … … 133 131 Group.Clear(); 134 132 primitiveToEntryDictionary.Clear(); 135 //entryToPrimitivesDictionary.Clear();136 133 points = new Group(this); 137 134 Group.Add(new Axis(this, 0, 0, AxisType.Both)); … … 213 210 if (!r.Selected) c.IntoBackground(); 214 211 primitiveToEntryDictionary[c] = r; 215 //if (!entryToPrimitivesDictionary.ContainsKey(r)) entryToPrimitivesDictionary[r] = new List<IPrimitive>();216 //entryToPrimitivesDictionary[r].Add(c);217 212 } 218 213 }
Note: See TracChangeset
for help on using the changeset viewer.