Initialisation depot

This commit is contained in:
Serge NOEL
2026-06-17 14:00:51 +02:00
commit efdf1683af
33190 changed files with 5907629 additions and 0 deletions
@@ -0,0 +1,22 @@
package jmri.jmrix.rps;
import javax.vecmath.Point3d;
/**
* JUnit tests for the rps.Ash2_1Algorithm class.
*
* This algorithm tends to pick arbitrary solutions with only three sensors, so
* we test with four and more.
*
* The default transmitter location for the 7, 13, 13, 13 readings is (0,0,12)
*
* @author Bob Jacobsen Copyright 2007
*/
public class Ash2_1AlgorithmTest extends AbstractAlgorithmTestBase {
@Override
Calculator getAlgorithm(Point3d[] pts, double vs) {
return new Ash2_1Algorithm(pts, vs);
}
}