Browse Source

fix keyword spacing in combinatorics class

Signed-off-by: Christoph Ruegg <git@cdrnet.ch>
pull/36/head
Christoph Ruegg 17 years ago
parent
commit
32dc2c5396
  1. 4
      src/Managed/Combinatorics.cs

4
src/Managed/Combinatorics.cs

@ -43,7 +43,7 @@ namespace MathNet.Numerics
/// <returns>Maximum number of distinct variations.</returns>
public static double Variations(int n, int k)
{
if(k < 0 || n < 0 || k > n)
if (k < 0 || n < 0 || k > n)
{
return 0;
}
@ -59,7 +59,7 @@ namespace MathNet.Numerics
/// <returns>Maximum number of distinct variations with repetition.</returns>
public static double VariationsWithRepetition(int n, int k)
{
if(k < 0 || n < 0)
if (k < 0 || n < 0)
{
return 0;
}

Loading…
Cancel
Save