Skip to content

Commit

Permalink
Solution rename
Browse files Browse the repository at this point in the history
  • Loading branch information
davghouse committed Feb 11, 2017
1 parent 124edb7 commit 1a303a8
Show file tree
Hide file tree
Showing 323 changed files with 2,773 additions and 2,773 deletions.
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*.suo
*.user
*.sln.docstates
!Spoj.Solver.csproj.user
!Spoj.SolverCpp.vcxproj.user
!Daves.SpojSpace.Solver.csproj.user
!Daves.SpojSpace.SolverCpp.vcxproj.user

# Build results
[Dd]ebug/
Expand Down Expand Up @@ -69,6 +69,8 @@ ipch/
*.cachefile
*.VC.db
*.VC.opendb
*.db-shm
*.db-wal

# Visual Studio profiler
*.psess
Expand Down Expand Up @@ -291,4 +293,4 @@ sympy-plots-for-*.tex/
# xindy
*.xdy

*.exe
*.exe
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{F3416C1B-AA2D-4028-9997-22F0FED2866D}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spoj.Library.PerformanceTests</RootNamespace>
<AssemblyName>Spoj.Library.PerformanceTests</AssemblyName>
<RootNamespace>Daves.SpojSpace.Library.PerformanceTests</RootNamespace>
<AssemblyName>Daves.SpojSpace.Library.PerformanceTests</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand Down Expand Up @@ -72,9 +72,9 @@
<Compile Include="TestSuites\StringMatchersTestSuite.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Spoj.Library\Spoj.Library.csproj">
<ProjectReference Include="..\Daves.SpojSpace.Library\Daves.SpojSpace.Library.csproj">
<Project>{4d10bf86-2d13-462e-9de5-c67d759a0772}</Project>
<Name>Spoj.Library</Name>
<Name>Daves.SpojSpace.Library</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace Spoj.Library.PerformanceTests
namespace Daves.SpojSpace.Library.PerformanceTests
{
public interface ITestSuite
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Spoj.Library.PerformanceTests")]
[assembly: AssemblyTitle("Daves.SpojSpace.Library.PerformanceTests")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Spoj.Library.PerformanceTests")]
[assembly: AssemblyProduct("Daves.SpojSpace.Library.PerformanceTests")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Spoj.Library.PerformanceTests
namespace Daves.SpojSpace.Library.PerformanceTests
{
public sealed class TestCase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Spoj.Library.PerformanceTests
namespace Daves.SpojSpace.Library.PerformanceTests
{
public sealed class TestCaseResult
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace Spoj.Library.PerformanceTests
namespace Daves.SpojSpace.Library.PerformanceTests
{
public sealed class TestScenario
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;

namespace Spoj.Library.PerformanceTests
namespace Daves.SpojSpace.Library.PerformanceTests
{
public sealed class TestScenarioResult
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Spoj.Library.BinaryIndexedTrees;
using Spoj.Library.SegmentTrees.AdHoc;
using Daves.SpojSpace.Library.BinaryIndexedTrees;
using Daves.SpojSpace.Library.SegmentTrees.AdHoc;
using System;
using System.Collections.Generic;

namespace Spoj.Library.PerformanceTests.TestSuites
namespace Daves.SpojSpace.Library.PerformanceTests.TestSuites
{
public sealed class BinaryIndexedTreesTestSuite : ITestSuite
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Spoj.Library.Primes;
using Daves.SpojSpace.Library.Primes;
using System.Collections.Generic;
using System.Linq;

namespace Spoj.Library.PerformanceTests.TestSuites
namespace Daves.SpojSpace.Library.PerformanceTests.TestSuites
{
public sealed class PrimesTestSuite : ITestSuite
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Spoj.Library.SegmentTrees;
using Spoj.Library.SegmentTrees.AdHoc;
using Spoj.Library.SegmentTrees.QueryObjects;
using Daves.SpojSpace.Library.SegmentTrees;
using Daves.SpojSpace.Library.SegmentTrees.AdHoc;
using Daves.SpojSpace.Library.SegmentTrees.QueryObjects;
using System;
using System.Collections.Generic;

namespace Spoj.Library.PerformanceTests.TestSuites
namespace Daves.SpojSpace.Library.PerformanceTests.TestSuites
{
public sealed class SegmentTreesTestSuite : ITestSuite
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Spoj.Library.StringMatchers;
using Daves.SpojSpace.Library.StringMatchers;
using System.Collections.Generic;
using System.Linq;

namespace Spoj.Library.PerformanceTests.TestSuites
namespace Daves.SpojSpace.Library.PerformanceTests.TestSuites
{
public sealed class StringMatchersTestSuite : ITestSuite
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace Spoj.Library.PerformanceTests.TestSuites
namespace Daves.SpojSpace.Library.PerformanceTests.TestSuites
{
public sealed class StringSortingTestSuite : ITestSuite
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Threading;

namespace Spoj.Library.PerformanceTests
namespace Daves.SpojSpace.Library.PerformanceTests
{
// For background, see http://mattwarren.org/2014/09/19/the-art-of-benchmarking/ and the articles it links to.
// Mainly interested in coarse-grained relative times rather than absolute times, so the details aren't too important.
Expand All @@ -21,7 +21,7 @@ private static void Main(string[] args)

private static ITestSuite GetTestSuite(string testSuiteName)
=> (ITestSuite)Activator
.CreateInstance(null, $"Spoj.Library.PerformanceTests.TestSuites.{testSuiteName}TestSuite")
.CreateInstance(null, $"Daves.SpojSpace.Library.PerformanceTests.TestSuites.{testSuiteName}TestSuite")
.Unwrap();

private static void PrepareTest(ITestSuite testSuite)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Spoj.Library.UnitTests
namespace Daves.SpojSpace.Library.UnitTests
{
[TestClass]
public sealed class BigIntegerTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.BinaryIndexedTrees;
using Daves.SpojSpace.Library.BinaryIndexedTrees;
using System;

namespace Spoj.Library.UnitTests.BinaryIndexedTrees
namespace Daves.SpojSpace.Library.UnitTests.BinaryIndexedTrees
{
[TestClass]
public sealed class BinaryIndexedTreeTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Spoj.Library.UnitTests
namespace Daves.SpojSpace.Library.UnitTests
{
[TestClass]
public sealed class BinarySearchTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<ProjectGuid>{57F0B88A-F92D-494F-9E99-A59C0CBBB26F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Spoj.Library.UnitTests</RootNamespace>
<AssemblyName>Spoj.Library.UnitTests</AssemblyName>
<RootNamespace>Daves.SpojSpace.Library.UnitTests</RootNamespace>
<AssemblyName>Daves.SpojSpace.Library.UnitTests</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
Expand Down Expand Up @@ -70,9 +70,9 @@
<Compile Include="Tries\TrieTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Spoj.Library\Spoj.Library.csproj">
<ProjectReference Include="..\Daves.SpojSpace.Library\Daves.SpojSpace.Library.csproj">
<Project>{4d10bf86-2d13-462e-9de5-c67d759a0772}</Project>
<Name>Spoj.Library</Name>
<Name>Daves.SpojSpace.Library</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.Helpers;
using Daves.SpojSpace.Library.Helpers;

namespace Spoj.Library.UnitTests.Helpers
namespace Daves.SpojSpace.Library.UnitTests.Helpers
{
[TestClass]
public sealed class IEnumerableHelperTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.Helpers;
using Daves.SpojSpace.Library.Helpers;

namespace Spoj.Library.UnitTests.Helpers
namespace Daves.SpojSpace.Library.UnitTests.Helpers
{
[TestClass]
public sealed class MathHelperTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.Helpers;
using Daves.SpojSpace.Library.Helpers;
using System.Linq;

namespace Spoj.Library.UnitTests.Helpers
namespace Daves.SpojSpace.Library.UnitTests.Helpers
{
[TestClass]
public sealed class StringHelperTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Linq;

namespace Spoj.Library.UnitTests
namespace Daves.SpojSpace.Library.UnitTests
{
[TestClass]
public sealed class InputGeneratorTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;

namespace Spoj.Library.UnitTests
namespace Daves.SpojSpace.Library.UnitTests
{
[TestClass]
public sealed class Mod10ExponentiatorTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.Primes;
using Daves.SpojSpace.Library.Primes;
using System.Linq;

namespace Spoj.Library.UnitTests.Primes
namespace Daves.SpojSpace.Library.UnitTests.Primes
{
[TestClass]
public sealed class PrimeDeciderTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.Primes;
using Daves.SpojSpace.Library.Primes;
using System;
using System.Linq;

namespace Spoj.Library.UnitTests.Primes
namespace Daves.SpojSpace.Library.UnitTests.Primes
{
[TestClass]
public sealed class PrimeFactorizerTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.Primes;
using Daves.SpojSpace.Library.Primes;
using System.Linq;

namespace Spoj.Library.UnitTests.Primes
namespace Daves.SpojSpace.Library.UnitTests.Primes
{
[TestClass]
public sealed class PrimeProviderTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Spoj.Library.UnitTests")]
[assembly: AssemblyTitle("Daves.SpojSpace.Library.UnitTests")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Spoj.Library.UnitTests")]
[assembly: AssemblyProduct("Daves.SpojSpace.Library.UnitTests")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.SegmentTrees;
using Spoj.Library.SegmentTrees.AdHoc;
using Spoj.Library.SegmentTrees.QueryObjects;
using Daves.SpojSpace.Library.SegmentTrees;
using Daves.SpojSpace.Library.SegmentTrees.AdHoc;
using Daves.SpojSpace.Library.SegmentTrees.QueryObjects;
using System;
using System.Collections.Generic;

namespace Spoj.Library.UnitTests.SegmentTrees
namespace Daves.SpojSpace.Library.UnitTests.SegmentTrees
{
[TestClass]
public sealed class SegmentTreeTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;

namespace Spoj.Library.UnitTests
namespace Daves.SpojSpace.Library.UnitTests
{
[TestClass]
public sealed class SimpleGraphTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.StringMatchers;
using Daves.SpojSpace.Library.StringMatchers;
using System;
using System.Collections.Generic;
using System.Linq;

namespace Spoj.Library.UnitTests.StringMatchers
namespace Daves.SpojSpace.Library.UnitTests.StringMatchers
{
[TestClass]
public sealed class StringMatcherTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Spoj.Library.Tries;
using Daves.SpojSpace.Library.Tries;
using System.Linq;

namespace Spoj.Library.UnitTests.Tries
namespace Daves.SpojSpace.Library.UnitTests.Tries
{
[TestClass]
public sealed class TrieTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;

namespace Spoj.Library
namespace Daves.SpojSpace.Library
{
// Lots of work needed here, but deprecated because System.Numerics is now referenced by SPOJ.
public struct BigInteger : IEquatable<BigInteger>
Expand Down
Loading

0 comments on commit 1a303a8

Please sign in to comment.