Пример #1
0
int main(int argc, const char * argv[]) {
    // Debug area
    
    printf("Hello, World!\n %.2f\n",2.0);
    int status;
    
    //serious shit starts here:
    status = value_iteration();
    return 0;
}
Пример #2
0
int main(int argc, const char * argv[]) {
    // Debug area
    arr[1] = 12;
    printf("Hello, World!\n %d\n",arr[1]);
    
    int status;
    
    init_value_iteration();
    //serious shit starts here:
    //test_interpol();
    //test_max();
    //test_copy();
    //test_load();
    status = value_iteration();
    test_pendulum();
    return 0;
}