[mlpack-svn] r16953 - mlpack/trunk/src/mlpack/core/util

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Aug 5 09:22:04 EDT 2014


Author: michaelfox99
Date: Tue Aug  5 09:22:03 2014
New Revision: 16953

Log:
Hierarchical model support


Modified:
   mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp

Modified: mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp	Tue Aug  5 09:22:03 2014
@@ -52,7 +52,6 @@
    * ReadFile reads an XML tree from a file.
    */
   bool ReadFile(const std::string& filename);
-  void ReadFile(xmlNode* n);
 
   /**
    * WriteFile writes the XML tree to a file.
@@ -130,6 +129,12 @@
   * WriteFile creates XML tree recursively.
   */
   void WriteFile(xmlNode* n);
+  
+  /**
+   * ReadFile reads an XML tree recursively.
+   */
+  bool ReadFile(const std::string& filename);
+  void ReadFile(xmlNode* n);
     
 };
 



More information about the mlpack-svn mailing list