Skip to content
Snippets Groups Projects
Minimize.h 257 B
Newer Older
  • Learn to ignore specific revisions
  • /*
     * Minimize.h
     *
     *  Created on: Dec 9, 2013
     *      Author: honza
     */
    
    #ifndef MINIMIZE_H_
    #define MINIMIZE_H_
    
    #include "automaton/FSM/FSM.h"
    
    class Minimize {
    public:
    	static automaton::FSM minimize(automaton::FSM& fsm);
    
    };
    
    #endif /* MINIMIZE_H_ */