All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.api.NetworkBenchV3 Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.api;

import water.init.NetworkBench;

/**
 * Created by tomasnykodym on 7/28/15.
 */
public class NetworkBenchV3 extends RequestSchema  {
  @API(help="NetworkBenchResults", direction = API.Direction.OUTPUT)
  TwoDimTableV3 [] results;

  @Override
  public NetworkBenchV3 fillFromImpl(NetworkBench impl) {
    if(impl._results != null) {
      results = new TwoDimTableV3[impl._results.length];
      for(int i = 0; i < results.length; ++i)
        results[i] = (TwoDimTableV3)new TwoDimTableV3().fillFromImpl(impl._results[i].to2dTable());
    }
    return this;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy