X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet%2Fsf%2Fopenrocket%2Foptimization%2Frocketoptimization%2FSimulationDomain.java;h=d2a204ec5afafb4092b6d2be7c20a15f328eb748;hb=8320c04afa30e2aa0150adc870d02abeedb01066;hp=d97eaae4738e8ef151b7d77e540d3e7cecd8354e;hpb=2f9b65cd53e9cbe4fc51587b2d672e78ead10a9e;p=debian%2Fopenrocket diff --git a/src/net/sf/openrocket/optimization/rocketoptimization/SimulationDomain.java b/src/net/sf/openrocket/optimization/rocketoptimization/SimulationDomain.java index d97eaae4..d2a204ec 100644 --- a/src/net/sf/openrocket/optimization/rocketoptimization/SimulationDomain.java +++ b/src/net/sf/openrocket/optimization/rocketoptimization/SimulationDomain.java @@ -1,6 +1,7 @@ package net.sf.openrocket.optimization.rocketoptimization; import net.sf.openrocket.document.Simulation; +import net.sf.openrocket.unit.Value; import net.sf.openrocket.util.Pair; /** @@ -18,11 +19,12 @@ public interface SimulationDomain { * is NaN, the simulation is outside of the domain. * * @param simulation the simulation to check. - * @return the double parameter is the domain indication; + * @return A pair indicating the status. The first element is the reference value, * a negative value or zero if the simulation is in the domain, - * a positive value or NaN if not. The second is a human-readable + * a positive value or NaN if not. The second is the value * indication of the domain (may be null). */ - public Pair getDistanceToDomain(Simulation simulation); + public Pair getDistanceToDomain(Simulation simulation); + }