added eff class
This commit is contained in:
13
TMI-practicum/SweepLineEffAlgorithm.cs
Normal file
13
TMI-practicum/SweepLineEffAlgorithm.cs
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace TMI_practicum
|
||||||
|
{
|
||||||
|
public static class SweepLineEffAlgorithm
|
||||||
|
{
|
||||||
|
public static IEnumerable<Intersection> Solve(IEnumerable<Circle> circles)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -50,6 +50,7 @@
|
|||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="SimpleAlgorithm.cs" />
|
<Compile Include="SimpleAlgorithm.cs" />
|
||||||
<Compile Include="SweepLineAlgorithm.cs" />
|
<Compile Include="SweepLineAlgorithm.cs" />
|
||||||
|
<Compile Include="SweepLineEffAlgorithm.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
|
Reference in New Issue
Block a user