-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interval Scheduling.sln
41 lines (41 loc) · 2.27 KB
/
Interval Scheduling.sln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32414.318
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Greedy Approach (Unweighted Intervals)", "Greedy Approach (Unweighted Intervals)\Greedy Approach (Unweighted Intervals).vcxproj", "{F7135EFC-F029-4297-8B04-8C115FA92C2E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DP Approach (Weighted Intervals)", "DP Approach (Weighted Intervals)\DP Approach (Weighted Intervals).vcxproj", "{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Debug|x64.ActiveCfg = Debug|x64
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Debug|x64.Build.0 = Debug|x64
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Debug|x86.ActiveCfg = Debug|Win32
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Debug|x86.Build.0 = Debug|Win32
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Release|x64.ActiveCfg = Release|x64
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Release|x64.Build.0 = Release|x64
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Release|x86.ActiveCfg = Release|Win32
{F7135EFC-F029-4297-8B04-8C115FA92C2E}.Release|x86.Build.0 = Release|Win32
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Debug|x64.ActiveCfg = Debug|x64
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Debug|x64.Build.0 = Debug|x64
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Debug|x86.ActiveCfg = Debug|Win32
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Debug|x86.Build.0 = Debug|Win32
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Release|x64.ActiveCfg = Release|x64
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Release|x64.Build.0 = Release|x64
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Release|x86.ActiveCfg = Release|Win32
{FBCA4E4B-4117-46CD-99D8-2C0984A50CC3}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1EB36C76-A6B6-490B-B316-54E9BB7FD591}
EndGlobalSection
EndGlobal