From abcaa2662dd9771d250a84caf48c96ca740bcd42 Mon Sep 17 00:00:00 2001 From: stefiosif Date: Thu, 21 Apr 2022 20:07:24 +0300 Subject: [PATCH] Add project files. --- .gitattributes | 63 +++++++ .gitignore | 22 +++ decremental-maintenance-scc/README.md | 0 .../decremental-maintenance-scc.vcxproj | 159 ++++++++++++++++++ ...ecremental-maintenance-scc.vcxproj.filters | 6 + .../decremental-maintenance-scc.vcxproj.user | 6 + dynamic-reachability-algorithms.sln | 31 ++++ 7 files changed, 287 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 decremental-maintenance-scc/README.md create mode 100644 decremental-maintenance-scc/decremental-maintenance-scc.vcxproj create mode 100644 decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.filters create mode 100644 decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.user create mode 100644 dynamic-reachability-algorithms.sln diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba35e98 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +.vs/ +.vscode/ + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +[Bb]in/ +[Bb]uild/ + +# MVS Created files +*.rsuser +*.suo +*.userosscache +*.sln.docstates +*.hint \ No newline at end of file diff --git a/decremental-maintenance-scc/README.md b/decremental-maintenance-scc/README.md new file mode 100644 index 0000000..e69de29 diff --git a/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj b/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj new file mode 100644 index 0000000..48b4728 --- /dev/null +++ b/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj @@ -0,0 +1,159 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {15b26719-56e0-412a-9cdb-b74d7b23e1ba} + decrementalmaintenancescc + 10.0 + + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + $(SolutionDir)bin\$(Platform)\$(Configuration)\ + $(SolutionDir)bin\intermediate\$(Platform)\$(Configuration)\ + + + false + $(SolutionDir)bin\$(Platform)\$(Configuration)\ + $(SolutionDir)bin\intermediate\$(Platform)\$(Configuration)\ + + + true + $(SolutionDir)bin\$(Platform)\$(Configuration)\ + $(SolutionDir)bin\intermediate\$(Platform)\$(Configuration)\ + + + false + $(SolutionDir)bin\$(Platform)\$(Configuration)\ + $(SolutionDir)bin\intermediate\$(Platform)\$(Configuration)\ + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + stdcpp20 + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + stdcpp20 + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + stdcpp20 + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + stdcpp20 + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.filters b/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.filters new file mode 100644 index 0000000..c9a75f0 --- /dev/null +++ b/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.filters @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.user b/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.user new file mode 100644 index 0000000..966b4ff --- /dev/null +++ b/decremental-maintenance-scc/decremental-maintenance-scc.vcxproj.user @@ -0,0 +1,6 @@ + + + + true + + \ No newline at end of file diff --git a/dynamic-reachability-algorithms.sln b/dynamic-reachability-algorithms.sln new file mode 100644 index 0000000..59ad9f5 --- /dev/null +++ b/dynamic-reachability-algorithms.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.32407.337 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "decremental-maintenance-scc", "decremental-maintenance-scc\decremental-maintenance-scc.vcxproj", "{15B26719-56E0-412A-9CDB-B74D7B23E1BA}" +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 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Debug|x64.ActiveCfg = Debug|x64 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Debug|x64.Build.0 = Debug|x64 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Debug|x86.ActiveCfg = Debug|Win32 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Debug|x86.Build.0 = Debug|Win32 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Release|x64.ActiveCfg = Release|x64 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Release|x64.Build.0 = Release|x64 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Release|x86.ActiveCfg = Release|Win32 + {15B26719-56E0-412A-9CDB-B74D7B23E1BA}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5ED86738-305B-4CD2-87F5-86F3C18A1DBB} + EndGlobalSection +EndGlobal