American-transaction costs 1.0.0.0
American option pricer under proportional transaction costs
|
00001 #ifndef VERSION_H 00002 #define VERSION_H 00003 00004 namespace AutoVersion{ 00005 00006 //Date Version Types 00007 static const char DATE[] = "13"; 00008 static const char MONTH[] = "10"; 00009 static const char YEAR[] = "2011"; 00010 static const char UBUNTU_VERSION_STYLE[] = "11.10"; 00011 00012 //Software Status 00013 static const char STATUS[] = "Release"; 00014 static const char STATUS_SHORT[] = "r"; 00015 00016 //Standard Version Type 00017 static const long MAJOR = 1; 00018 static const long MINOR = 0; 00019 static const long BUILD = 0; 00020 static const long REVISION = 0; 00021 00022 //Miscellaneous Version Types 00023 static const long BUILDS_COUNT = 1; 00024 #define RC_FILEVERSION 1,0,0,0 00025 #define RC_FILEVERSION_STRING "1, 0, 0, 0\0" 00026 static const char FULLVERSION_STRING[] = "1.0.0.0"; 00027 00028 //These values are to keep track of your versioning state, don't modify them. 00029 static const long BUILD_HISTORY = 0; 00030 00031 00032 } 00033 #endif //VERSION_H