00001 // ------------------------------nerek.cpp------------------------------------ 00002 // 00003 // NEREK by Chad Rempp 00004 // March 1 2002 00005 // Version 0.0.02 00006 // 00007 // 5-3-02 Today my goal is to get the console system (currently no code) to 00008 // create and load a concept net. There will be nothing useful still but the 00009 // program will finally be able to run. 00010 // 00011 // 3-1-02 I am just trying to get the NN architecture done. This program will 00012 // be a test bed for future development. 00013 // 00014 // Trying to figure out how I want to implement the console. The tests and 00015 // failures will consist of the rest of the 0.0.0x versions. 00016 // 00017 // 11-17-01 Organization, dividing into different libraries. 00018 // 00019 // TODO: 00020 // Console - Create a console based command enviroment (0.00.02) 00021 // Con/KR - Console working KR working (usable sys) (0.00.50) 00022 // KR - Start Implementing KR (0.01.01) 00023 // KR - Have a solid KR system begin tweaking (0.01.50) 00024 // GUI - Create a GUI based command enviroment (0.02.00) 00025 // 00026 //------------------------------------------------------------------------------ 00027 00028 //using namespace std; 00029 00030 //#include <stdio.h> 00031 #include <iostream.h> 00032 #include "nerek.h" 00033 #include "module.h" 00034 #include "console.h" 00035 00036 int main(int argc, char *argv[]) 00037 { 00038 ConsoleSys(); 00039 return 0; 00040 }