Пример #1
0
 /* Method: SaveTrain
  *
  * Save the training structure to a file, with the format as specified in <ReadTrainFromFile>
  *
  * Return:
  * The function returns true on success and false on failure.
  *
  * See also:
  *      <ReadTrainFromFile>, <SaveTrainToFixed>, <fann_save_train at http://libfann.github.io/fann/docs/files/fann_train-h.html#fann_save_train>
  *
  * This function appears in FANN >= 1.0.0.
  */
 public bool SaveTrain(string filename)
 {
     return(InternalData.save_train(filename));
 }