Files
JIMRI/java/test/jmri/jmrix/rps/Ash2_2AlgorithmTest.java
T
2026-06-17 14:00:51 +02:00

21 lines
464 B
Java

package jmri.jmrix.rps;
import javax.vecmath.Point3d;
/**
* JUnit tests for the rps.Ash2_2Algorithm class.
*
* This algorithm tends to pick arbitrary solutions with only three sensors, so
* we test with four and more.
*
* @author Bob Jacobsen Copyright 2007
*/
public class Ash2_2AlgorithmTest extends AbstractAlgorithmTestBase {
@Override
Calculator getAlgorithm(Point3d[] pts, double vs) {
return new Ash2_2Algorithm(pts, vs);
}
}