5 changed files with 12 additions and 11 deletions
@ -1,6 +1,6 @@ |
|||
using System; |
|||
|
|||
namespace MathNet.Numerics.RootFinders |
|||
namespace MathNet.Numerics.RootFinding |
|||
{ |
|||
public class BrentRootFinder : RootFinder |
|||
{ |
|||
@ -1,6 +1,6 @@ |
|||
using System; |
|||
|
|||
namespace MathNet.Numerics.RootFinders |
|||
namespace MathNet.Numerics.RootFinding |
|||
{ |
|||
public struct Range |
|||
{ |
|||
@ -1,15 +1,13 @@ |
|||
namespace MathNet.Numerics.RootFinders |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using MbUnit.Framework; |
|||
using Gallio.Framework; |
|||
using SuntrustPortfolio.Numerics; |
|||
using MathNet.Numerics.RootFinding; |
|||
using NUnit.Framework; |
|||
using System; |
|||
|
|||
namespace MathNet.Numerics.UnitTests.RootFindingTests |
|||
{ |
|||
[TestFixture] |
|||
public class RootFinderTest |
|||
public class BrentRootFinderTest |
|||
{ |
|||
BrentRootFinder _solver = new BrentRootFinder(100, 1e-14); |
|||
readonly BrentRootFinder _solver = new BrentRootFinder(100, 1e-14); |
|||
|
|||
[Test] |
|||
public void MultipleRoots() |
|||
Loading…
Reference in new issue