Add missing solution and project file updates

This commit is contained in:
Lucas Scharenbroich 2016-12-10 21:59:55 -06:00
parent cfc2cda1a8
commit e4ae474a67
4 changed files with 14 additions and 6 deletions

View File

@ -3,7 +3,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>66b89e29-23e4-4d16-a3d5-e55f0eda4d87</ProjectGuid>
<ProjectGuid>{D76DB013-8897-4C2D-ACF3-FB55585D3677}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AI.Test</RootNamespace>
@ -50,7 +50,8 @@
</Otherwise>
</Choose>
<ItemGroup>
<Compile Include="UnitTest1.cs" />
<Compile Include="EightPuzzleBoard.cs" />
<Compile Include="SearchTest.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Choose>

View File

@ -1,12 +1,14 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 2013
VisualStudioVersion = 12.0.40629.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpriteCompiler", "SpriteCompiler\SpriteCompiler.csproj", "{56F54CA9-17C1-45C6-915B-6FABF4DAE5D0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpriteCompiler.Test", "SpriteCompiler.Test\SpriteCompiler.Test.csproj", "{7B87BB8E-8C6E-4CE7-9130-6DA8F9454D8C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AI.Test", "AI.Test\AI.Test.csproj", "{D76DB013-8897-4C2D-ACF3-FB55585D3677}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -21,6 +23,10 @@ Global
{7B87BB8E-8C6E-4CE7-9130-6DA8F9454D8C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7B87BB8E-8C6E-4CE7-9130-6DA8F9454D8C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7B87BB8E-8C6E-4CE7-9130-6DA8F9454D8C}.Release|Any CPU.Build.0 = Release|Any CPU
{D76DB013-8897-4C2D-ACF3-FB55585D3677}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D76DB013-8897-4C2D-ACF3-FB55585D3677}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D76DB013-8897-4C2D-ACF3-FB55585D3677}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D76DB013-8897-4C2D-ACF3-FB55585D3677}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -54,7 +54,7 @@
return sequence;
}
public IEnumerable<T> ExtendSearch(ISearchProblem<A, S, C> problem, IQueue<T> fringe)
public IEnumerable<T> ExtendSearch(ISearchProblem<A, S, C> problem)
{
while (!fringe.Empty)
{
@ -68,7 +68,7 @@
return Enumerable.Empty<T>();
}
public ISearchStepInfo<T> SearchStep(ISearchProblem<A, S, C> problem, IQueue<T> fringe)
public ISearchStepInfo<T> SearchStep(ISearchProblem<A, S, C> problem)
{
var node = fringe.Remove();

View File

@ -55,6 +55,7 @@
<Compile Include="Adapters\QueueAdapter.cs" />
<Compile Include="AI\AbstractAISearch.cs" />
<Compile Include="AI\AbstractSearchNode.cs" />
<Compile Include="AI\AbstractStateSpaceSearch.cs" />
<Compile Include="AI\AStarComparer.cs" />
<Compile Include="AI\AStarSearch.cs" />
<Compile Include="AI\BestFirstSearch.cs" />