// Tests - SoftFunctionFactory
////////////////////////////////////////////////////////////////////////////
@Test
public void testExtFuncMINE() {
SoftFunctionFactory.getDefaultFactory().defineSoftFunction( "MINE", new SoftFunction() {
public Object getFunctionValue( List<Object> args ) {
double x = argDouble( args.get(0));
double y = argDouble( args.get(1));
return Math.sqrt( x*x + y*y );
}