PAAPAA 1.0
|
00001 00002 00013 #ifndef ALGORITMOS_H_ 00014 #define ALGORITMOS_H_ 00015 00016 class Problema; 00017 class Solucao; 00018 00019 class Algoritmos { 00020 public: 00021 00023 Algoritmos(); 00025 virtual ~Algoritmos(); 00026 00028 00036 static void dividirParaConquistar( const Problema& p, Solucao& s ); 00037 }; 00038 00039 #endif /* ALGORITMOS_H_ */