Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/20/12 15:02:06 (12 years ago)
Author:
ascheibe
Message:

#1174 removed RandomSeed from Run

Location:
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml

    r7384 r7385  
    110110      <Column Name="AlgorithmId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" />
    111111      <Column Name="ProblemId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" />
    112       <Column Name="RandomSeed" Type="System.Int32" DbType="Int NOT NULL" CanBeNull="false" />
    113112      <Column Name="CreatedDate" Type="System.DateTime" DbType="DateTime2 NOT NULL" CanBeNull="false" />
    114113      <Column Name="UserId" Type="System.Guid" DbType="UniqueIdentifier NOT NULL" CanBeNull="false" />
  • branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml.layout

    r5534 r7385  
    133133      </nodes>
    134134    </associationConnector>
    135     <classShape Id="65934fe9-4206-4d20-971b-1afacf645311" absoluteBounds="5.75, 7.25, 2, 2.1554996744791666">
     135    <classShape Id="65934fe9-4206-4d20-971b-1afacf645311" absoluteBounds="5.75, 7.25, 2, 1.9631982421875005">
    136136      <DataClassMoniker Name="/OKBDataContext/Run" />
    137137      <nestedChildShapes>
    138         <elementListCompartment Id="14f0104d-03c2-4aec-9a4d-faeaaa1d8947" absoluteBounds="5.7650000000000006, 7.7100000000000009, 1.9700000000000002, 1.5954996744791665" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" />
    139       </nestedChildShapes>
    140     </classShape>
    141     <associationConnector edgePoints="[(3.27917873426126 : 2.65549967447917); (3.27917873426126 : 8.32774983723958); (5.75 : 8.32774983723958)]" fixedFrom="NotFixed" fixedTo="NotFixed">
     138        <elementListCompartment Id="14f0104d-03c2-4aec-9a4d-faeaaa1d8947" absoluteBounds="5.7650000000000006, 7.7100000000000009, 1.9700000000000002, 1.4031982421875" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" />
     139      </nestedChildShapes>
     140    </classShape>
     141    <associationConnector edgePoints="[(3.24167093356531 : 2.65549967447917); (3.24167093356531 : 8.23159912109375); (5.75 : 8.23159912109375)]" fixedFrom="Algorithm" fixedTo="Algorithm">
    142142      <AssociationMoniker Name="/OKBDataContext/Algorithm/Algorithm_Run" />
    143143      <nodes>
     
    146146      </nodes>
    147147    </associationConnector>
    148     <associationConnector edgePoints="[(12.7137905014838 : 2.65549967447917); (12.7137905014838 : 8.32774983723958); (8.13243692318721 : 8.32774983723958 : JumpStart); (7.96577025652055 : 8.32774983723958 : JumpEnd); (7.75 : 8.32774983723958)]" fixedFrom="NotFixed" fixedTo="NotFixed">
     148    <associationConnector edgePoints="[(12.7565713753709 : 2.65549967447917); (12.7565713753709 : 8.23159912109375); (8.13243692318721 : 8.23159912109375 : JumpStart); (7.96577025652055 : 8.23159912109375 : JumpEnd); (7.75 : 8.23159912109375)]" fixedFrom="Algorithm" fixedTo="Algorithm">
    149149      <AssociationMoniker Name="/OKBDataContext/Problem/Problem_Run" />
    150150      <nodes>
  • branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.designer.cs

    r7384 r7385  
    23842384    private long _ProblemId;
    23852385   
    2386     private int _RandomSeed;
    2387    
    23882386    private System.DateTime _CreatedDate;
    23892387   
     
    24082406    partial void OnProblemIdChanging(long value);
    24092407    partial void OnProblemIdChanged();
    2410     partial void OnRandomSeedChanging(int value);
    2411     partial void OnRandomSeedChanged();
    24122408    partial void OnCreatedDateChanging(System.DateTime value);
    24132409    partial void OnCreatedDateChanged();
     
    24902486          this.SendPropertyChanged("ProblemId");
    24912487          this.OnProblemIdChanged();
    2492         }
    2493       }
    2494     }
    2495    
    2496     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RandomSeed", DbType="Int NOT NULL")]
    2497     public int RandomSeed
    2498     {
    2499       get
    2500       {
    2501         return this._RandomSeed;
    2502       }
    2503       set
    2504       {
    2505         if ((this._RandomSeed != value))
    2506         {
    2507           this.OnRandomSeedChanging(value);
    2508           this.SendPropertyChanging();
    2509           this._RandomSeed = value;
    2510           this.SendPropertyChanged("RandomSeed");
    2511           this.OnRandomSeedChanged();
    25122488        }
    25132489      }
Note: See TracChangeset for help on using the changeset viewer.