Changeset 1042
- Timestamp:
- 12/20/08 11:11:03 (16 years ago)
- Location:
- branches/CEDMA-Refactoring-Ticket419
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/ProblemView.Designer.cs
r1003 r1042 45 45 private void InitializeComponent() { 46 46 this.importButton = new System.Windows.Forms.Button(); 47 this.t extBox1= new System.Windows.Forms.TextBox();47 this.trainingSamplesStartTextBox = new System.Windows.Forms.TextBox(); 48 48 this.trainingLabel = new System.Windows.Forms.Label(); 49 this.t extBox4= new System.Windows.Forms.TextBox();50 this. textBox2= new System.Windows.Forms.TextBox();51 this. textBox3= new System.Windows.Forms.TextBox();49 this.trainingSamplesEndTextBox = new System.Windows.Forms.TextBox(); 50 this.validationSamplesEndTextBox = new System.Windows.Forms.TextBox(); 51 this.validationSamplesStartTextBox = new System.Windows.Forms.TextBox(); 52 52 this.validationLabel = new System.Windows.Forms.Label(); 53 this.te xtBox5= new System.Windows.Forms.TextBox();54 this.te xtBox6= new System.Windows.Forms.TextBox();53 this.testSamplesEndTextBox = new System.Windows.Forms.TextBox(); 54 this.testSamplesStartTextBox = new System.Windows.Forms.TextBox(); 55 55 this.testLabel = new System.Windows.Forms.Label(); 56 56 this.datasetView = new HeuristicLab.DataAnalysis.DatasetView(); … … 77 77 this.importButton.Click += new System.EventHandler(this.importButton_Click); 78 78 // 79 // textBox1 80 // 81 this.textBox1.Location = new System.Drawing.Point(119, 17); 82 this.textBox1.Name = "textBox1"; 83 this.textBox1.Size = new System.Drawing.Size(96, 20); 84 this.textBox1.TabIndex = 4; 79 // trainingSamplesStartTextBox 80 // 81 this.trainingSamplesStartTextBox.Location = new System.Drawing.Point(119, 17); 82 this.trainingSamplesStartTextBox.Name = "trainingSamplesStartTextBox"; 83 this.trainingSamplesStartTextBox.Size = new System.Drawing.Size(96, 20); 84 this.trainingSamplesStartTextBox.TabIndex = 4; 85 this.trainingSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated); 86 this.trainingSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating); 85 87 // 86 88 // trainingLabel … … 93 95 this.trainingLabel.Text = "Training samples:"; 94 96 // 95 // textBox4 96 // 97 this.textBox4.Location = new System.Drawing.Point(221, 17); 98 this.textBox4.Name = "textBox4"; 99 this.textBox4.Size = new System.Drawing.Size(96, 20); 100 this.textBox4.TabIndex = 10; 101 // 102 // textBox2 103 // 104 this.textBox2.Location = new System.Drawing.Point(221, 43); 105 this.textBox2.Name = "textBox2"; 106 this.textBox2.Size = new System.Drawing.Size(96, 20); 107 this.textBox2.TabIndex = 13; 108 // 109 // textBox3 110 // 111 this.textBox3.Location = new System.Drawing.Point(119, 43); 112 this.textBox3.Name = "textBox3"; 113 this.textBox3.Size = new System.Drawing.Size(96, 20); 114 this.textBox3.TabIndex = 12; 97 // trainingSamplesEndTextBox 98 // 99 this.trainingSamplesEndTextBox.Location = new System.Drawing.Point(221, 17); 100 this.trainingSamplesEndTextBox.Name = "trainingSamplesEndTextBox"; 101 this.trainingSamplesEndTextBox.Size = new System.Drawing.Size(96, 20); 102 this.trainingSamplesEndTextBox.TabIndex = 10; 103 this.trainingSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated); 104 this.trainingSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating); 105 // 106 // validationSamplesEndTextBox 107 // 108 this.validationSamplesEndTextBox.Location = new System.Drawing.Point(221, 43); 109 this.validationSamplesEndTextBox.Name = "validationSamplesEndTextBox"; 110 this.validationSamplesEndTextBox.Size = new System.Drawing.Size(96, 20); 111 this.validationSamplesEndTextBox.TabIndex = 13; 112 this.validationSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated); 113 this.validationSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating); 114 // 115 // validationSamplesStartTextBox 116 // 117 this.validationSamplesStartTextBox.Location = new System.Drawing.Point(119, 43); 118 this.validationSamplesStartTextBox.Name = "validationSamplesStartTextBox"; 119 this.validationSamplesStartTextBox.Size = new System.Drawing.Size(96, 20); 120 this.validationSamplesStartTextBox.TabIndex = 12; 121 this.validationSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated); 122 this.validationSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating); 115 123 // 116 124 // validationLabel … … 123 131 this.validationLabel.Text = "Validation samples:"; 124 132 // 125 // textBox5 126 // 127 this.textBox5.Location = new System.Drawing.Point(221, 68); 128 this.textBox5.Name = "textBox5"; 129 this.textBox5.Size = new System.Drawing.Size(96, 20); 130 this.textBox5.TabIndex = 16; 131 // 132 // textBox6 133 // 134 this.textBox6.Location = new System.Drawing.Point(119, 68); 135 this.textBox6.Name = "textBox6"; 136 this.textBox6.Size = new System.Drawing.Size(96, 20); 137 this.textBox6.TabIndex = 15; 133 // testSamplesEndTextBox 134 // 135 this.testSamplesEndTextBox.Location = new System.Drawing.Point(221, 68); 136 this.testSamplesEndTextBox.Name = "testSamplesEndTextBox"; 137 this.testSamplesEndTextBox.Size = new System.Drawing.Size(96, 20); 138 this.testSamplesEndTextBox.TabIndex = 16; 139 this.testSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated); 140 this.testSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating); 141 // 142 // testSamplesStartTextBox 143 // 144 this.testSamplesStartTextBox.Location = new System.Drawing.Point(119, 68); 145 this.testSamplesStartTextBox.Name = "testSamplesStartTextBox"; 146 this.testSamplesStartTextBox.Size = new System.Drawing.Size(96, 20); 147 this.testSamplesStartTextBox.TabIndex = 15; 148 this.testSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated); 149 this.testSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating); 138 150 // 139 151 // testLabel … … 169 181 this.targetsListBox.Size = new System.Drawing.Size(153, 79); 170 182 this.targetsListBox.TabIndex = 19; 183 this.targetsListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.targetsListBox_ItemCheck); 171 184 // 172 185 // inputsListBox … … 180 193 this.inputsListBox.Size = new System.Drawing.Size(141, 79); 181 194 this.inputsListBox.TabIndex = 21; 195 this.inputsListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.inputsListBox_ItemCheck); 182 196 // 183 197 // autoregressiveCheckBox … … 192 206 this.autoregressiveCheckBox.Text = "Auto regressive:"; 193 207 this.autoregressiveCheckBox.UseVisualStyleBackColor = true; 208 this.autoregressiveCheckBox.CheckedChanged += new System.EventHandler(this.autoregressiveCheckBox_CheckedChanged); 194 209 // 195 210 // targetsGroupBox … … 218 233 // 219 234 this.partitioningGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 220 this.partitioningGroupBox.Controls.Add(this. textBox2);235 this.partitioningGroupBox.Controls.Add(this.validationSamplesEndTextBox); 221 236 this.partitioningGroupBox.Controls.Add(this.trainingLabel); 222 this.partitioningGroupBox.Controls.Add(this.t extBox1);223 this.partitioningGroupBox.Controls.Add(this.t extBox4);237 this.partitioningGroupBox.Controls.Add(this.trainingSamplesStartTextBox); 238 this.partitioningGroupBox.Controls.Add(this.trainingSamplesEndTextBox); 224 239 this.partitioningGroupBox.Controls.Add(this.validationLabel); 225 this.partitioningGroupBox.Controls.Add(this.te xtBox5);226 this.partitioningGroupBox.Controls.Add(this. textBox3);227 this.partitioningGroupBox.Controls.Add(this.te xtBox6);240 this.partitioningGroupBox.Controls.Add(this.testSamplesEndTextBox); 241 this.partitioningGroupBox.Controls.Add(this.validationSamplesStartTextBox); 242 this.partitioningGroupBox.Controls.Add(this.testSamplesStartTextBox); 228 243 this.partitioningGroupBox.Controls.Add(this.testLabel); 229 244 this.partitioningGroupBox.Location = new System.Drawing.Point(3, 268); … … 265 280 266 281 private System.Windows.Forms.Button importButton; 267 private System.Windows.Forms.TextBox t extBox1;282 private System.Windows.Forms.TextBox trainingSamplesStartTextBox; 268 283 private System.Windows.Forms.Label trainingLabel; 269 private System.Windows.Forms.TextBox t extBox4;270 private System.Windows.Forms.TextBox textBox2;271 private System.Windows.Forms.TextBox textBox3;284 private System.Windows.Forms.TextBox trainingSamplesEndTextBox; 285 private System.Windows.Forms.TextBox validationSamplesEndTextBox; 286 private System.Windows.Forms.TextBox validationSamplesStartTextBox; 272 287 private System.Windows.Forms.Label validationLabel; 273 private System.Windows.Forms.TextBox te xtBox5;274 private System.Windows.Forms.TextBox te xtBox6;288 private System.Windows.Forms.TextBox testSamplesEndTextBox; 289 private System.Windows.Forms.TextBox testSamplesStartTextBox; 275 290 private System.Windows.Forms.Label testLabel; 276 291 private HeuristicLab.DataAnalysis.DatasetView datasetView; -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/ProblemView.cs
r1003 r1042 30 30 using HeuristicLab.Core; 31 31 using HeuristicLab.DataAnalysis; 32 using System.Diagnostics; 32 33 33 34 namespace HeuristicLab.CEDMA.Core { … … 42 43 protected override void UpdateControls() { 43 44 base.UpdateControls(); 44 // TASK update text-boxes and datasetview 45 trainingSamplesStartTextBox.Text = problem.TrainingSamplesStart.ToString(); 46 trainingSamplesEndTextBox.Text = problem.TrainingSamplesEnd.ToString(); 47 validationSamplesStartTextBox.Text = problem.ValidationSamplesStart.ToString(); 48 validationSamplesEndTextBox.Text = problem.ValidationSamplesEnd.ToString(); 49 testSamplesStartTextBox.Text = problem.TestSamplesStart.ToString(); 50 testSamplesEndTextBox.Text = problem.TestSamplesEnd.ToString(); 51 targetsListBox.Items.Clear(); 52 inputsListBox.Items.Clear(); 53 for (int i = 0; i < problem.DataSet.Columns; i++) { 54 targetsListBox.Items.Add(problem.DataSet.VariableNames[i], problem.AllowedTargetVariables.Contains(i)); 55 inputsListBox.Items.Add(problem.DataSet.VariableNames[i], problem.AllowedInputVariables.Contains(i)); 56 } 45 57 } 46 58 47 59 private void importButton_Click(object sender, EventArgs e) { 48 if (openFileDialog.ShowDialog(this) == DialogResult.OK) {60 if (openFileDialog.ShowDialog(this) == DialogResult.OK) { 49 61 DatasetParser parser = new DatasetParser(); 50 62 bool success = false; … … 53 65 parser.Import(openFileDialog.FileName, true); 54 66 success = true; 55 } catch(DataFormatException ex) { 67 } 68 catch (DataFormatException ex) { 56 69 ShowWarningMessageBox(ex); 57 70 // not possible to parse strictly => clear and try to parse non-strict … … 60 73 success = true; 61 74 } 62 } catch(DataFormatException ex) { 75 } 76 catch (DataFormatException ex) { 63 77 // if the non-strict parsing also failed then show the exception 64 78 ShowErrorMessageBox(ex); 65 79 } 66 if (success) {80 if (success) { 67 81 Dataset dataset = (Dataset)problem.DataSet; 68 82 dataset.Rows = parser.Rows; … … 72 86 dataset.Samples = new double[dataset.Rows * dataset.Columns]; 73 87 Array.Copy(parser.Samples, dataset.Samples, dataset.Columns * dataset.Rows); 88 datasetView.Dataset = problem.DataSet; 89 74 90 problem.TrainingSamplesStart = parser.TrainingSamplesStart; 75 91 problem.ValidationSamplesEnd = parser.TrainingSamplesStart; … … 82 98 83 99 List<int> nonInputVariables = parser.NonInputVariables; 84 for (int i = 0; i < dataset.Columns; i++) {85 if (!nonInputVariables.Contains(i)) problem.AllowedInputVariables.Add(i);100 for (int i = 0; i < dataset.Columns; i++) { 101 if (!nonInputVariables.Contains(i)) problem.AllowedInputVariables.Add(i); 86 102 } 87 103 Refresh(); … … 106 122 sb.Append("Sorry, but something went wrong!\n\n" + ex.Message + "\n\n" + ex.StackTrace); 107 123 108 while (ex.InnerException != null) {124 while (ex.InnerException != null) { 109 125 ex = ex.InnerException; 110 126 sb.Append("\n\n-----\n\n" + ex.Message + "\n\n" + ex.StackTrace); … … 112 128 return sb.ToString(); 113 129 } 130 131 private void targetsListBox_ItemCheck(object sender, ItemCheckEventArgs e) { 132 if (e.NewValue == CheckState.Checked && !problem.AllowedTargetVariables.Contains(e.Index)) 133 problem.AllowedTargetVariables.Add(e.Index); 134 else if (e.NewValue == CheckState.Unchecked && problem.AllowedTargetVariables.Contains(e.Index)) 135 problem.AllowedTargetVariables.Remove(e.Index); 136 } 137 138 private void inputsListBox_ItemCheck(object sender, ItemCheckEventArgs e) { 139 if (e.NewValue == CheckState.Checked && !problem.AllowedInputVariables.Contains(e.Index)) 140 problem.AllowedInputVariables.Add(e.Index); 141 else if (e.NewValue == CheckState.Unchecked && problem.AllowedInputVariables.Contains(e.Index)) 142 problem.AllowedInputVariables.Remove(e.Index); 143 } 144 145 private void autoregressiveCheckBox_CheckedChanged(object sender, EventArgs e) { 146 problem.AutoRegressive = autoregressiveCheckBox.Checked; 147 } 148 149 private void samplesTextBox_Validating(object sender, CancelEventArgs e) { 150 try { 151 int trainingStart = int.Parse(trainingSamplesStartTextBox.Text); 152 int trainingEnd = int.Parse(trainingSamplesEndTextBox.Text); 153 int validationStart = int.Parse(validationSamplesStartTextBox.Text); 154 int validationEnd = int.Parse(validationSamplesEndTextBox.Text); 155 int testStart = int.Parse(testSamplesStartTextBox.Text); 156 int testEnd = int.Parse(testSamplesEndTextBox.Text); 157 if (trainingStart < 0 || validationStart < 0 || testStart < 0 || 158 trainingEnd >= problem.DataSet.Rows || validationEnd >= problem.DataSet.Rows || testEnd >= problem.DataSet.Rows || 159 trainingStart >= trainingEnd || 160 validationStart >= validationEnd || 161 testStart >= testEnd || 162 IsOverlapping(trainingStart, trainingEnd, validationStart, validationEnd) || 163 IsOverlapping(trainingStart, trainingEnd, testStart, testEnd) || 164 IsOverlapping(validationStart, validationEnd, testStart, testEnd)) 165 ColorSamplesTextBoxes(Color.Red); 166 else 167 ColorSamplesTextBoxes(Color.White); 168 } 169 catch (FormatException ex) { 170 ColorSamplesTextBoxes(Color.Red); 171 } 172 } 173 174 private void samplesTextBox_Validated(object sender, EventArgs e) { 175 problem.TrainingSamplesStart = int.Parse(trainingSamplesStartTextBox.Text); 176 problem.TrainingSamplesEnd = int.Parse(trainingSamplesEndTextBox.Text); 177 problem.ValidationSamplesStart = int.Parse(validationSamplesStartTextBox.Text); 178 problem.ValidationSamplesEnd = int.Parse(validationSamplesEndTextBox.Text); 179 problem.TestSamplesStart = int.Parse(testSamplesStartTextBox.Text); 180 problem.TestSamplesEnd = int.Parse(testSamplesEndTextBox.Text); 181 } 182 183 private void ColorSamplesTextBoxes(Color color) { 184 trainingSamplesStartTextBox.BackColor = color; 185 trainingSamplesEndTextBox.BackColor = color; 186 validationSamplesStartTextBox.BackColor = color; 187 validationSamplesEndTextBox.BackColor = color; 188 testSamplesStartTextBox.BackColor = color; 189 testSamplesEndTextBox.BackColor = color; 190 } 191 192 private bool IsOverlapping(int x0, int y0, int x1, int y1) { 193 Trace.Assert(x0 <= y0 && x1 <= y1); 194 int tmp; 195 // make sure that x0,y0 is the left interval 196 if (x1 < x0) { 197 tmp = x1; 198 x1 = x0; 199 x0 = tmp; 200 tmp = y1; 201 y1 = y0; 202 y0 = tmp; 203 } 204 return y0 > x1; 205 } 114 206 } 115 207 } -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.sln
r1041 r1042 160 160 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x86.Build.0 = Debug|x86 161 161 {F43B59AB-2B8C-4570-BC1E-15592086517C}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 162 {F43B59AB-2B8C-4570-BC1E-15592086517C}.CEDMA Debug|Any CPU.Build.0 = Debug|x86163 162 {F43B59AB-2B8C-4570-BC1E-15592086517C}.CEDMA Debug|x86.ActiveCfg = Debug|x86 164 163 {F43B59AB-2B8C-4570-BC1E-15592086517C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 175 174 {F43B59AB-2B8C-4570-BC1E-15592086517C}.Visualization Debug|x86.Build.0 = Debug|x86 176 175 {F473D9AF-3F09-4296-9F28-3C65118DAFFA}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 177 {F473D9AF-3F09-4296-9F28-3C65118DAFFA}.CEDMA Debug|Any CPU.Build.0 = Debug|x86178 176 {F473D9AF-3F09-4296-9F28-3C65118DAFFA}.CEDMA Debug|x86.ActiveCfg = Debug|x86 179 177 {F473D9AF-3F09-4296-9F28-3C65118DAFFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 190 188 {F473D9AF-3F09-4296-9F28-3C65118DAFFA}.Visualization Debug|x86.Build.0 = Debug|x86 191 189 {47019A74-F7F7-482E-83AA-D3F4F777E879}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 192 {47019A74-F7F7-482E-83AA-D3F4F777E879}.CEDMA Debug|Any CPU.Build.0 = Debug|x86193 190 {47019A74-F7F7-482E-83AA-D3F4F777E879}.CEDMA Debug|x86.ActiveCfg = Debug|x86 194 191 {47019A74-F7F7-482E-83AA-D3F4F777E879}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 204 201 {47019A74-F7F7-482E-83AA-D3F4F777E879}.Visualization Debug|x86.Build.0 = Debug|x86 205 202 {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 206 {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.CEDMA Debug|Any CPU.Build.0 = Debug|x86207 203 {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.CEDMA Debug|x86.ActiveCfg = Debug|x86 208 204 {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 218 214 {9EF75B49-D507-44E0-BC5D-C200FDA53B9B}.Visualization Debug|x86.Build.0 = Debug|x86 219 215 {A9983BA2-B3B2-475E-8E2C-62050B71D1C5}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 220 {A9983BA2-B3B2-475E-8E2C-62050B71D1C5}.CEDMA Debug|Any CPU.Build.0 = Debug|x86221 216 {A9983BA2-B3B2-475E-8E2C-62050B71D1C5}.CEDMA Debug|x86.ActiveCfg = Debug|x86 222 217 {A9983BA2-B3B2-475E-8E2C-62050B71D1C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 233 228 {A9983BA2-B3B2-475E-8E2C-62050B71D1C5}.Visualization Debug|x86.Build.0 = Debug|x86 234 229 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 235 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|Any CPU.Build.0 = Debug|x86236 230 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|x86.ActiveCfg = Debug|x86 237 231 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 247 241 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x86.Build.0 = Debug|x86 248 242 {4095C92C-5A4C-44BC-9963-5F384CF5CC3F}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 249 {4095C92C-5A4C-44BC-9963-5F384CF5CC3F}.CEDMA Debug|Any CPU.Build.0 = Debug|x86250 243 {4095C92C-5A4C-44BC-9963-5F384CF5CC3F}.CEDMA Debug|x86.ActiveCfg = Debug|x86 251 244 {4095C92C-5A4C-44BC-9963-5F384CF5CC3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 261 254 {4095C92C-5A4C-44BC-9963-5F384CF5CC3F}.Visualization Debug|x86.Build.0 = Debug|x86 262 255 {B4BE8E53-BA06-4237-9A01-24255F880201}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 263 {B4BE8E53-BA06-4237-9A01-24255F880201}.CEDMA Debug|Any CPU.Build.0 = Debug|x86264 256 {B4BE8E53-BA06-4237-9A01-24255F880201}.CEDMA Debug|x86.ActiveCfg = Debug|x86 265 257 {B4BE8E53-BA06-4237-9A01-24255F880201}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 275 267 {B4BE8E53-BA06-4237-9A01-24255F880201}.Visualization Debug|x86.Build.0 = Debug|x86 276 268 {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 277 {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.CEDMA Debug|Any CPU.Build.0 = Debug|x86278 269 {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.CEDMA Debug|x86.ActiveCfg = Debug|x86 279 270 {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 289 280 {6E757D0E-20F9-4E89-AF06-D7DA256870DB}.Visualization Debug|x86.Build.0 = Debug|x86 290 281 {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 291 {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.CEDMA Debug|Any CPU.Build.0 = Debug|x86292 282 {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.CEDMA Debug|x86.ActiveCfg = Debug|x86 293 283 {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 303 293 {55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}.Visualization Debug|x86.Build.0 = Debug|x86 304 294 {F5614C53-153C-4A37-A608-121E1C087F07}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 305 {F5614C53-153C-4A37-A608-121E1C087F07}.CEDMA Debug|Any CPU.Build.0 = Debug|x86306 295 {F5614C53-153C-4A37-A608-121E1C087F07}.CEDMA Debug|x86.ActiveCfg = Debug|x86 307 296 {F5614C53-153C-4A37-A608-121E1C087F07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 317 306 {F5614C53-153C-4A37-A608-121E1C087F07}.Visualization Debug|x86.Build.0 = Debug|x86 318 307 {F7CF0571-25CB-43D5-8443-0843A1E2861A}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 319 {F7CF0571-25CB-43D5-8443-0843A1E2861A}.CEDMA Debug|Any CPU.Build.0 = Debug|x86320 308 {F7CF0571-25CB-43D5-8443-0843A1E2861A}.CEDMA Debug|x86.ActiveCfg = Debug|x86 321 309 {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 331 319 {F7CF0571-25CB-43D5-8443-0843A1E2861A}.Visualization Debug|x86.Build.0 = Debug|x86 332 320 {205898D3-2717-4686-AF17-52409B7EC0C6}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 333 {205898D3-2717-4686-AF17-52409B7EC0C6}.CEDMA Debug|Any CPU.Build.0 = Debug|x86334 321 {205898D3-2717-4686-AF17-52409B7EC0C6}.CEDMA Debug|x86.ActiveCfg = Debug|x86 335 322 {205898D3-2717-4686-AF17-52409B7EC0C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 345 332 {205898D3-2717-4686-AF17-52409B7EC0C6}.Visualization Debug|x86.Build.0 = Debug|x86 346 333 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 347 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.CEDMA Debug|Any CPU.Build.0 = Debug|x86348 334 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.CEDMA Debug|x86.ActiveCfg = Debug|x86 349 335 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 359 345 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Visualization Debug|x86.Build.0 = Debug|x86 360 346 {4C0EF782-CC94-4A94-BC3E-661D2600559B}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 361 {4C0EF782-CC94-4A94-BC3E-661D2600559B}.CEDMA Debug|Any CPU.Build.0 = Debug|x86362 347 {4C0EF782-CC94-4A94-BC3E-661D2600559B}.CEDMA Debug|x86.ActiveCfg = Debug|x86 363 348 {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 373 358 {4C0EF782-CC94-4A94-BC3E-661D2600559B}.Visualization Debug|x86.Build.0 = Debug|x86 374 359 {B462D3CC-8866-42F0-9832-AD0967613B72}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 375 {B462D3CC-8866-42F0-9832-AD0967613B72}.CEDMA Debug|Any CPU.Build.0 = Debug|x86376 360 {B462D3CC-8866-42F0-9832-AD0967613B72}.CEDMA Debug|x86.ActiveCfg = Debug|x86 377 361 {B462D3CC-8866-42F0-9832-AD0967613B72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 387 371 {B462D3CC-8866-42F0-9832-AD0967613B72}.Visualization Debug|x86.Build.0 = Debug|x86 388 372 {E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 389 {E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}.CEDMA Debug|Any CPU.Build.0 = Debug|x86390 373 {E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}.CEDMA Debug|x86.ActiveCfg = Debug|x86 391 374 {E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 401 384 {E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}.Visualization Debug|x86.Build.0 = Debug|x86 402 385 {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 403 {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.CEDMA Debug|Any CPU.Build.0 = Debug|x86404 386 {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.CEDMA Debug|x86.ActiveCfg = Debug|x86 405 387 {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 415 397 {E3CCBFC6-900C-41B6-AFB8-6646DB097435}.Visualization Debug|x86.Build.0 = Debug|x86 416 398 {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 417 {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.CEDMA Debug|Any CPU.Build.0 = Debug|x86418 399 {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.CEDMA Debug|x86.ActiveCfg = Debug|x86 419 400 {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 429 410 {E39AF78A-9692-472B-B061-E2F1B1AB2C92}.Visualization Debug|x86.Build.0 = Debug|x86 430 411 {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 431 {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.CEDMA Debug|Any CPU.Build.0 = Debug|x86432 412 {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.CEDMA Debug|x86.ActiveCfg = Debug|x86 433 413 {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 444 424 {FCD62C6F-4793-4593-AE9A-0BDCA256EE99}.Visualization Debug|x86.Build.0 = Debug|x86 445 425 {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 446 {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.CEDMA Debug|Any CPU.Build.0 = Debug|x86447 426 {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.CEDMA Debug|x86.ActiveCfg = Debug|x86 448 427 {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 458 437 {7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}.Visualization Debug|x86.Build.0 = Debug|x86 459 438 {6D9564BB-956D-4808-8F92-AA7F776F90A5}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 460 {6D9564BB-956D-4808-8F92-AA7F776F90A5}.CEDMA Debug|Any CPU.Build.0 = Debug|x86461 439 {6D9564BB-956D-4808-8F92-AA7F776F90A5}.CEDMA Debug|x86.ActiveCfg = Debug|x86 462 440 {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 472 450 {6D9564BB-956D-4808-8F92-AA7F776F90A5}.Visualization Debug|x86.Build.0 = Debug|x86 473 451 {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 474 {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.CEDMA Debug|Any CPU.Build.0 = Debug|x86475 452 {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.CEDMA Debug|x86.ActiveCfg = Debug|x86 476 453 {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 486 463 {2D4E4565-3ED9-4BEB-AE75-39D871843D24}.Visualization Debug|x86.Build.0 = Debug|x86 487 464 {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 488 {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.CEDMA Debug|Any CPU.Build.0 = Debug|x86489 465 {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.CEDMA Debug|x86.ActiveCfg = Debug|x86 490 466 {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 500 476 {9A781B2F-A58D-4270-A28A-3B14BBC11F4A}.Visualization Debug|x86.Build.0 = Debug|x86 501 477 {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 502 {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.CEDMA Debug|Any CPU.Build.0 = Debug|x86503 478 {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.CEDMA Debug|x86.ActiveCfg = Debug|x86 504 479 {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 514 489 {C2FB432A-07CA-45B5-BAFE-FEC172D1107B}.Visualization Debug|x86.Build.0 = Debug|x86 515 490 {74752FCD-9E10-48DB-9AF2-AF5518B62807}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 516 {74752FCD-9E10-48DB-9AF2-AF5518B62807}.CEDMA Debug|Any CPU.Build.0 = Debug|x86517 491 {74752FCD-9E10-48DB-9AF2-AF5518B62807}.CEDMA Debug|x86.ActiveCfg = Debug|x86 518 492 {74752FCD-9E10-48DB-9AF2-AF5518B62807}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 528 502 {74752FCD-9E10-48DB-9AF2-AF5518B62807}.Visualization Debug|x86.Build.0 = Debug|x86 529 503 {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 530 {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.CEDMA Debug|Any CPU.Build.0 = Debug|x86531 504 {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.CEDMA Debug|x86.ActiveCfg = Debug|x86 532 505 {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 542 515 {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Visualization Debug|x86.Build.0 = Debug|x86 543 516 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 544 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.CEDMA Debug|Any CPU.Build.0 = Debug|x86545 517 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.CEDMA Debug|x86.ActiveCfg = Debug|x86 546 518 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 556 528 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.Visualization Debug|x86.Build.0 = Debug|x86 557 529 {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 558 {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.CEDMA Debug|Any CPU.Build.0 = Debug|x86559 530 {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.CEDMA Debug|x86.ActiveCfg = Debug|x86 560 531 {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 570 541 {2E6112A7-3A94-406D-A28C-38AC2D324DCA}.Visualization Debug|x86.Build.0 = Debug|x86 571 542 {6960CBCD-E44B-49B0-BA86-671091C42C36}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 572 {6960CBCD-E44B-49B0-BA86-671091C42C36}.CEDMA Debug|Any CPU.Build.0 = Debug|x86573 543 {6960CBCD-E44B-49B0-BA86-671091C42C36}.CEDMA Debug|x86.ActiveCfg = Debug|x86 574 544 {6960CBCD-E44B-49B0-BA86-671091C42C36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 659 629 {C27DDF6C-84DF-45EF-B82F-57A28DD51166}.Visualization Debug|x86.Build.0 = Debug|x86 660 630 {39DEF061-8261-43DB-8B3B-C7555251FF77}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 661 {39DEF061-8261-43DB-8B3B-C7555251FF77}.CEDMA Debug|Any CPU.Build.0 = Debug|x86662 631 {39DEF061-8261-43DB-8B3B-C7555251FF77}.CEDMA Debug|x86.ActiveCfg = Debug|x86 663 632 {39DEF061-8261-43DB-8B3B-C7555251FF77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 673 642 {39DEF061-8261-43DB-8B3B-C7555251FF77}.Visualization Debug|x86.Build.0 = Debug|x86 674 643 {F18FD554-19B9-460C-9A49-4AA8D7245727}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 675 {F18FD554-19B9-460C-9A49-4AA8D7245727}.CEDMA Debug|Any CPU.Build.0 = Debug|x86676 644 {F18FD554-19B9-460C-9A49-4AA8D7245727}.CEDMA Debug|x86.ActiveCfg = Debug|x86 677 645 {F18FD554-19B9-460C-9A49-4AA8D7245727}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 702 670 {1BF17271-5350-476A-8F6D-FC74FA3E82CA}.Visualization Debug|x86.Build.0 = Debug|x86 703 671 {14E1C3E3-2496-436A-AE00-09F7B81DB15B}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 704 {14E1C3E3-2496-436A-AE00-09F7B81DB15B}.CEDMA Debug|Any CPU.Build.0 = Debug|x86705 672 {14E1C3E3-2496-436A-AE00-09F7B81DB15B}.CEDMA Debug|x86.ActiveCfg = Debug|x86 706 673 {14E1C3E3-2496-436A-AE00-09F7B81DB15B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 716 683 {14E1C3E3-2496-436A-AE00-09F7B81DB15B}.Visualization Debug|x86.Build.0 = Debug|x86 717 684 {6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 718 {6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}.CEDMA Debug|Any CPU.Build.0 = Debug|x86719 685 {6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}.CEDMA Debug|x86.ActiveCfg = Debug|x86 720 686 {6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 730 696 {6AEF1284-2428-4B01-B9D2-62C1FA7C2DE1}.Visualization Debug|x86.Build.0 = Debug|x86 731 697 {32DAA44F-944A-465F-A5C9-1C491EE4976D}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 732 {32DAA44F-944A-465F-A5C9-1C491EE4976D}.CEDMA Debug|Any CPU.Build.0 = Debug|x86733 698 {32DAA44F-944A-465F-A5C9-1C491EE4976D}.CEDMA Debug|x86.ActiveCfg = Debug|x86 734 699 {32DAA44F-944A-465F-A5C9-1C491EE4976D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 744 709 {32DAA44F-944A-465F-A5C9-1C491EE4976D}.Visualization Debug|x86.Build.0 = Debug|x86 745 710 {E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 746 {E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}.CEDMA Debug|Any CPU.Build.0 = Debug|x86747 711 {E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}.CEDMA Debug|x86.ActiveCfg = Debug|x86 748 712 {E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 759 723 {E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}.Visualization Debug|x86.Build.0 = Debug|x86 760 724 {23117533-8A91-474E-BBF6-C39485D0810A}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 761 {23117533-8A91-474E-BBF6-C39485D0810A}.CEDMA Debug|Any CPU.Build.0 = Debug|x86762 725 {23117533-8A91-474E-BBF6-C39485D0810A}.CEDMA Debug|x86.ActiveCfg = Debug|x86 763 726 {23117533-8A91-474E-BBF6-C39485D0810A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 774 737 {23117533-8A91-474E-BBF6-C39485D0810A}.Visualization Debug|x86.Build.0 = Debug|x86 775 738 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 776 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.CEDMA Debug|Any CPU.Build.0 = Debug|x86777 739 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.CEDMA Debug|x86.ActiveCfg = Debug|x86 778 740 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 788 750 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.Visualization Debug|x86.Build.0 = Debug|x86 789 751 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 790 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|Any CPU.Build.0 = Debug|x86791 752 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|x86.ActiveCfg = Debug|x86 792 753 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 802 763 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Visualization Debug|x86.Build.0 = Debug|x86 803 764 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 804 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|Any CPU.Build.0 = Debug|x86805 765 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|x86.ActiveCfg = Debug|x86 806 766 {74223A32-C726-4978-BE78-37113A18373C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 816 776 {74223A32-C726-4978-BE78-37113A18373C}.Visualization Debug|x86.Build.0 = Debug|x86 817 777 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 818 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|Any CPU.Build.0 = Debug|x86819 778 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|x86.ActiveCfg = Debug|x86 820 779 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 830 789 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Visualization Debug|x86.Build.0 = Debug|x86 831 790 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 832 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|Any CPU.Build.0 = Debug|x86833 791 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|x86.ActiveCfg = Debug|x86 834 792 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 941 899 {8B14A35E-DBDF-43EB-B019-23E9FBC5A35E}.Visualization Debug|x86.Build.0 = Debug|x86 942 900 {A0821479-801F-43DF-B788-AE92FB410DA9}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 943 {A0821479-801F-43DF-B788-AE92FB410DA9}.CEDMA Debug|Any CPU.Build.0 = Debug|x86944 901 {A0821479-801F-43DF-B788-AE92FB410DA9}.CEDMA Debug|x86.ActiveCfg = Debug|x86 945 902 {A0821479-801F-43DF-B788-AE92FB410DA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Note: See TracChangeset
for help on using the changeset viewer.