Skip to content

Commit

Permalink
2023-March public version of MAKRO.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBonde committed Mar 23, 2023
1 parent 8498234 commit 07dbd8b
Show file tree
Hide file tree
Showing 51 changed files with 18,207 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Data
*.gdx filter=lfs -diff merge=lfs -text
*.g00 filter=lfs -diff merge=lfs -text
*.feather filter=lfs -diff merge=lfs -text
*.mdb filter=lfs -diff merge=lfs -text
*.pkl filter=lfs -diff merge=lfs -text
*.gtb filter=lfs -diff merge=lfs -text

# Images
*.png filter=lfs -diff merge=lfs -text
*.jpg filter=lfs -diff merge=lfs -text
*.svg filter=lfs -diff merge=lfs -text

*.pdf filter=lfs -diff merge=lfs -text

# MS Office
*.xls filter=lfs -diff merge=lfs -text
*.xlsx filter=lfs -diff merge=lfs -text
*.ppt filter=lfs -diff merge=lfs -text
*.pptx filter=lfs -diff merge=lfs -text
*.doc filter=lfs -diff merge=lfs -text
*.docx filter=lfs -diff merge=lfs -text

# Executables
*.exe filter=lfs -diff merge=lfs -text
*.dll filter=lfs -diff merge=lfs -text
*.pyc filter=lfs -diff merge=lfs -text
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
*.g00
*.lst
*.gmy
*.pkl
*.lyx~
*.sublime-workspace
*.pyc
*.dat

*.gdx
!Model/Gdx/aldersprofiler.gdx
!Model/Gdx/ARIMA_forecasts.gdx
!Model/Gdx/previous_static_calibration.gdx
!Model/Gdx/previous_deep_calibration.gdx
!Model/Gdx/previous_smooth_calibration.gdx
!Data/*.gdx
!Data/*/*.gdx
Binary file added Documentation/Documentation.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions Documentation/FrontPages&BackPage.docx
Git LFS file not shown
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 DREAM

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
92 changes: 92 additions & 0 deletions MAKRO.sublime-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
{
"build_systems":
[
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"python\" -u \"$file\""
}
],
"folders":
[
{
"file_include_patterns":
[
"*.gms",
"*.cmd"
],
"path": "Model"
},
{
"file_include_patterns":
[
"*.cmd"
],
"path": "Konjunktur"
},
{
"file_include_patterns":
[
"*.cmd"
],
"path": "Analysis/Standard_shocks"
},
{
"file_include_patterns":
[
"*.cmd"
],
"path": "Analysis/MPC"
},
{
"file_include_patterns":
[
"*.cmd"
],
"path": "Analysis/Shocks_ExternalEvaluation"
},
{
"file_include_patterns":
[
"*.gms",
"*.cmd"
],
"path": "Data"
},
{
"file_include_patterns":
[
"*.gms",
"*.cmd"
],
"path": "Analysis"
},
{
"path": ".",
"file_exclude_patterns":
[
"*.gdx",
"*.gbk",
"*.xlsx",
"*.lst",
"*.gmy",
"*.g00",
"*.pkl",
"*.dat",
"*.lyx~",
],
},
{
"file_exclude_patterns": ["*"],
"path": "Analysis/Old"
},
],
"settings":
{
"tab_size": 2,
"translate_tabs_to_spaces": true,
"detect_indentation": false,
"rulers": [120],
}
}
Loading

0 comments on commit 07dbd8b

Please sign in to comment.