-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatrixDecomposition.sln
More file actions
65 lines (65 loc) · 3.96 KB
/
Copy pathMatrixDecomposition.sln
File metadata and controls
65 lines (65 loc) · 3.96 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30804.86
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SimpleLLT", "SimpleLLT\SimpleLLT.vcxproj", "{BF602705-9255-4106-BF7C-BE01B970FF85}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SimpleLU", "SimpleLU\SimpleLU.vcxproj", "{0D6A17B0-5971-4AD0-9785-6A18F0845A9E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SimpleQR", "SimpleQR\SimpleQR.vcxproj", "{55B9CAF3-E227-44C6-8A5C-B322C8B8909B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MatrixMultiplication", "MatrixMultiplication\MatrixMultiplication.vcxproj", "{1569907B-A94A-4B4D-B2A5-88C38C8F605D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Triangle", "Triangle\Triangle.vcxproj", "{8037418F-BFBD-4872-AF48-A741ABB4329A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BF602705-9255-4106-BF7C-BE01B970FF85}.Debug|Win32.ActiveCfg = Debug|Win32
{BF602705-9255-4106-BF7C-BE01B970FF85}.Debug|Win32.Build.0 = Debug|Win32
{BF602705-9255-4106-BF7C-BE01B970FF85}.Debug|x64.ActiveCfg = Debug|Win32
{BF602705-9255-4106-BF7C-BE01B970FF85}.Release|Win32.ActiveCfg = Release|Win32
{BF602705-9255-4106-BF7C-BE01B970FF85}.Release|Win32.Build.0 = Release|Win32
{BF602705-9255-4106-BF7C-BE01B970FF85}.Release|x64.ActiveCfg = Release|Win32
{0D6A17B0-5971-4AD0-9785-6A18F0845A9E}.Debug|Win32.ActiveCfg = Debug|Win32
{0D6A17B0-5971-4AD0-9785-6A18F0845A9E}.Debug|Win32.Build.0 = Debug|Win32
{0D6A17B0-5971-4AD0-9785-6A18F0845A9E}.Debug|x64.ActiveCfg = Debug|Win32
{0D6A17B0-5971-4AD0-9785-6A18F0845A9E}.Release|Win32.ActiveCfg = Release|Win32
{0D6A17B0-5971-4AD0-9785-6A18F0845A9E}.Release|Win32.Build.0 = Release|Win32
{0D6A17B0-5971-4AD0-9785-6A18F0845A9E}.Release|x64.ActiveCfg = Release|Win32
{55B9CAF3-E227-44C6-8A5C-B322C8B8909B}.Debug|Win32.ActiveCfg = Debug|Win32
{55B9CAF3-E227-44C6-8A5C-B322C8B8909B}.Debug|Win32.Build.0 = Debug|Win32
{55B9CAF3-E227-44C6-8A5C-B322C8B8909B}.Debug|x64.ActiveCfg = Debug|Win32
{55B9CAF3-E227-44C6-8A5C-B322C8B8909B}.Release|Win32.ActiveCfg = Release|Win32
{55B9CAF3-E227-44C6-8A5C-B322C8B8909B}.Release|Win32.Build.0 = Release|Win32
{55B9CAF3-E227-44C6-8A5C-B322C8B8909B}.Release|x64.ActiveCfg = Release|Win32
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Debug|Win32.ActiveCfg = Debug|Win32
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Debug|Win32.Build.0 = Debug|Win32
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Debug|x64.ActiveCfg = Debug|x64
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Debug|x64.Build.0 = Debug|x64
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Release|Win32.ActiveCfg = Release|Win32
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Release|Win32.Build.0 = Release|Win32
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Release|x64.ActiveCfg = Release|x64
{1569907B-A94A-4B4D-B2A5-88C38C8F605D}.Release|x64.Build.0 = Release|x64
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Debug|Win32.ActiveCfg = Debug|Win32
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Debug|Win32.Build.0 = Debug|Win32
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Debug|x64.ActiveCfg = Debug|x64
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Debug|x64.Build.0 = Debug|x64
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Release|Win32.ActiveCfg = Release|Win32
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Release|Win32.Build.0 = Release|Win32
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Release|x64.ActiveCfg = Release|x64
{8037418F-BFBD-4872-AF48-A741ABB4329A}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {070EDD3B-7FE8-436F-9F80-0974C211A7D1}
EndGlobalSection
EndGlobal