Skip to content
Open

Dev #18

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1,236 changes: 1,236 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

76 changes: 76 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"configurations": [
{
"name": "cool_maize_soybean_original",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/local/bin/ecosys.x",
"MIMode": "gdb",
"args": [
"<",
"runfile"
],
"cwd": "${workspaceFolder}/../input_data/cool_temp_maize-soybean",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"name": "warm_temp_maize_soybean_dryland",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/local/bin/ecosys.x",
"MIMode": "gdb",
"args": [
"<",
"runfile"
],
"cwd": "${workspaceFolder}/data/warm_temp_maize-soybean_dryland",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"name": "warm_tem_maize_soybean_irrigated",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/local/bin/ecosys.x",
"MIMode": "gdb",
"args": [
"<",
"runfile"
],
"cwd": "${workspaceFolder}/data/warm_tem_maize_soybean_irrigated",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}
220 changes: 0 additions & 220 deletions CMakeLists.txt

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Makefile -- Use this to build on *NIX systems.

# Options set on command line.
debug = not-set
debug = 1
mpi = not-set
shared = not-set
precision = not-set
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
Loading