From cea7188d55fb24ac4a2b537416cce1ea0e540437 Mon Sep 17 00:00:00 2001 From: Arthur Bols Date: Wed, 15 May 2019 18:08:07 +0200 Subject: [PATCH] added eff class --- TMI-practicum/SweepLineEffAlgorithm.cs | 13 +++++++++++++ TMI-practicum/TMI-practicum.csproj | 1 + 2 files changed, 14 insertions(+) create mode 100644 TMI-practicum/SweepLineEffAlgorithm.cs diff --git a/TMI-practicum/SweepLineEffAlgorithm.cs b/TMI-practicum/SweepLineEffAlgorithm.cs new file mode 100644 index 0000000..8aff49e --- /dev/null +++ b/TMI-practicum/SweepLineEffAlgorithm.cs @@ -0,0 +1,13 @@ +using System.Collections; +using System.Collections.Generic; + +namespace TMI_practicum +{ + public static class SweepLineEffAlgorithm + { + public static IEnumerable Solve(IEnumerable circles) + { + return null; + } + } +} \ No newline at end of file diff --git a/TMI-practicum/TMI-practicum.csproj b/TMI-practicum/TMI-practicum.csproj index 391d1a6..ce09dbb 100644 --- a/TMI-practicum/TMI-practicum.csproj +++ b/TMI-practicum/TMI-practicum.csproj @@ -50,6 +50,7 @@ +