Changeset 269
- Timestamp:
- 05/27/08 17:29:03 (17 years ago)
- Location:
- trunk/sources/HeuristicLab.Scheduling.JSSP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Scheduling.JSSP/HeuristicLab.Scheduling.JSSP.csproj
r30 r269 37 37 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 38 38 <DebugSymbols>true</DebugSymbols> 39 <DebugType> full</DebugType>39 <DebugType>pdbonly</DebugType> 40 40 <Optimize>false</Optimize> 41 41 <OutputPath>bin\Debug\</OutputPath> -
trunk/sources/HeuristicLab.Scheduling.JSSP/HeuristicLabJSSPPlugin.cs
r2 r269 32 32 [Dependency(Dependency = "HeuristicLab.Operators")] 33 33 [Dependency(Dependency = "HeuristicLab.Permutation")] 34 public class HeuristicLab RoutingTSPPlugin : PluginBase {34 public class HeuristicLabSchedulingJSPPlugin : PluginBase { 35 35 } 36 36 } -
trunk/sources/HeuristicLab.Scheduling.JSSP/OperationUpdater.cs
r2 r269 52 52 op.Predecessors.RemoveAt(index); // remove scheduled op from predecessor list 53 53 op.Start = scheduledOp.Start + scheduledOp.Duration; // new earliest start date 54 return null;55 54 } 56 55 }
Note: See TracChangeset
for help on using the changeset viewer.