Skip to content

Commit a327fd3

Browse files
committed
Dependencies from NuGet. fixed #5
Packages updated.
1 parent c5007c7 commit a327fd3

22 files changed

+1131
-549
lines changed
-60.5 KB
Binary file not shown.

Dependencies/MathNet.Numerics.dll

-893 KB
Binary file not shown.

Dependencies/Mono.Cecil.dll

-270 KB
Binary file not shown.

Dependencies/RestSharp.dll

-161 KB
Binary file not shown.

Dependencies/WolframAlpha.NET.dll

512 Bytes
Binary file not shown.

Dependencies/ZedGraph.dll

-300 KB
Binary file not shown.

Dependencies/nunit.framework.dll

-140 KB
Binary file not shown.

MathExpressions.NET.Benchmarks.GUI/License-LGPL.txt

Lines changed: 506 additions & 0 deletions
Large diffs are not rendered by default.

MathExpressions.NET.Benchmarks.GUI/MathExpressions.NET.Benchmarks.GUI.csproj

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,8 @@
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
3636
<ItemGroup>
37-
<Reference Include="MathNet.Numerics, Version=2.2.1.24, Culture=neutral, processorArchitecture=MSIL">
38-
<SpecificVersion>False</SpecificVersion>
39-
<HintPath>..\Dependencies\MathNet.Numerics.dll</HintPath>
40-
</Reference>
41-
<Reference Include="MathNet.Numerics.IO, Version=2.2.1.24, Culture=neutral, processorArchitecture=MSIL">
42-
<SpecificVersion>False</SpecificVersion>
43-
<HintPath>..\Dependencies\MathNet.Numerics.IO.dll</HintPath>
37+
<Reference Include="MathNet.Numerics">
38+
<HintPath>..\packages\MathNet.Numerics.3.3.0\lib\net40\MathNet.Numerics.dll</HintPath>
4439
</Reference>
4540
<Reference Include="System" />
4641
<Reference Include="System.Core" />
@@ -53,9 +48,8 @@
5348
<Reference Include="System.Drawing" />
5449
<Reference Include="System.Windows.Forms" />
5550
<Reference Include="System.Xml" />
56-
<Reference Include="ZedGraph, Version=5.1.5.28844, Culture=neutral, PublicKeyToken=02a83cbd123fcd60, processorArchitecture=MSIL">
57-
<SpecificVersion>False</SpecificVersion>
58-
<HintPath>..\Dependencies\ZedGraph.dll</HintPath>
51+
<Reference Include="ZedGraph">
52+
<HintPath>..\packages\ZedGraph.5.1.6\lib\net35-Client\ZedGraph.dll</HintPath>
5953
</Reference>
6054
</ItemGroup>
6155
<ItemGroup>
@@ -80,6 +74,7 @@
8074
<AutoGen>True</AutoGen>
8175
<DependentUpon>Resources.resx</DependentUpon>
8276
</Compile>
77+
<None Include="packages.config" />
8378
<None Include="Properties\Settings.settings">
8479
<Generator>SettingsSingleFileGenerator</Generator>
8580
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
@@ -90,6 +85,9 @@
9085
<DesignTimeSharedInput>True</DesignTimeSharedInput>
9186
</Compile>
9287
</ItemGroup>
88+
<ItemGroup>
89+
<Content Include="License-LGPL.txt" />
90+
</ItemGroup>
9391
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
9492
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9593
Other similar extension points exist, see Microsoft.Common.targets.

MathExpressions.NET.Benchmarks.GUI/PolynominalRegression.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using MathNet.Numerics.LinearAlgebra.Double;
2-
using MathNet.Numerics.LinearAlgebra.Generic;
1+
using MathNet.Numerics.LinearAlgebra;
2+
using MathNet.Numerics.LinearAlgebra.Double;
33

44
public class PolynominalRegression
55
{

0 commit comments

Comments
 (0)