File tree 3 files changed +4
-4
lines changed
src/main/java/de/tilman_neumann/jml/factor/cfrac
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public class CFrac extends FactorAlgorithm {
69
69
70
70
// multiplier
71
71
private int ks_adjust ;
72
- private KnuthSchroeppel_CFrac ks = new KnuthSchroeppel_CFrac ();
72
+ private KnuthSchroeppelCFrac ks = new KnuthSchroeppelCFrac ();
73
73
74
74
// prime base
75
75
private float C ;
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public class CFrac63 extends FactorAlgorithm {
61
61
62
62
// multiplier
63
63
private int ks_adjust ;
64
- private KnuthSchroeppel_CFrac ks = new KnuthSchroeppel_CFrac ();
64
+ private KnuthSchroeppelCFrac ks = new KnuthSchroeppelCFrac ();
65
65
66
66
// prime base
67
67
private float C ;
Original file line number Diff line number Diff line change 32
32
*
33
33
* @author Tilman Neumann
34
34
*/
35
- public class KnuthSchroeppel_CFrac {
35
+ public class KnuthSchroeppelCFrac {
36
36
37
- private static final Logger LOG = LogManager .getLogger (KnuthSchroeppel_CFrac .class );
37
+ private static final Logger LOG = LogManager .getLogger (KnuthSchroeppelCFrac .class );
38
38
private final static boolean DEBUG = false ;
39
39
40
40
private static final double ONE_BY_3 = 1.0 /3.0 * Math .log (2 );
You can’t perform that action at this time.
0 commit comments