pub trait GPCTreeTrait: AlgorithmTrait + GPCTreeTraitConst {
    fn as_raw_mut_GPCTree(&mut self) -> *mut c_void;

    fn train(
        &mut self,
        samples: &mut GPCTrainingSamples,
        params: GPCTrainingParams
    ) -> Result<()> { ... } fn read(&mut self, fn_: &FileNode) -> Result<()> { ... } }

Required Methods

Provided Methods

C++ default parameters
  • params: GPCTrainingParams()

Implementors