-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Included bug fix from (non-generic) MultivariatePolynomial library.
MultivariatePolynomial<T>.Factor now working. Tests for MultivariatePolynomial<T>.Factor. MultivariatePolynomial<T>.GCD now working for the univariate case. Tests for MultivariatePolynomial<T>.GCD univariate case.
- Loading branch information
1 parent
81e69dc
commit 31035ce
Showing
12 changed files
with
901 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace ExtendedArithmetic | ||
{ | ||
public static class StringExtensionMethods | ||
{ | ||
public static bool Contains(this string source, string value, StringComparison comparisonType) | ||
{ | ||
return source?.IndexOf(value, comparisonType) >= 0; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.