# Instructions for Contributing to Dynare ## Introduction Hello from the Dynare Team! We’re happy you’re on this page because hopefully that means you’re thinking of getting directly involved with the Dynare project. Herein, we outline how you can contribute to Dynare. Please read this document all the way through before contributing. Please follow the steps in the sections below in order. Note that, though we’d love for you to contribute code, you don’t need to be a programmer to contribute to Dynare. You can report bugs, ask for enhancements, fix typos in the manual, contribute tests to the test suite, or do something we haven’t thought of yet! If something is not clear, don’t hesitate to ask if you can’t find the answer online. You can contact us directly at [dev@dynare.org](mailto:dev@dynare.org). Please note that the repositories under the purview of this page are: * [Dynare](https://git.dynare.org/Dynare/dynare) * [Preprocessor](https://git.dynare.org/Dynare/preprocessor) * [Dseries](https://git.dynare.org/Dynare/dseries) * [Reporting](https://git.dynare.org/Dynare/reporting) * [M-unit-tests](https://git.dynare.org/Dynare/m-unit-tests) ## Making your Intentions Known Before making changes to the codebase, it’d be helpful if you communicated your intentions with us. This will avoid double work and ensure that you don’t contribute code that won’t be included in Dynare for one reason or another. ### Create your account on our GitLab instance All the development of Dynare happens in [GitLab](https://about.gitlab.com/), which is an integrated environment for storing code under git, keeping track of issues and milestones, and perform testing. The Dynare Team has its own instance of GitLab. In order to work with us, you need to create your account on our GitLab instance on the [register page](https://git.dynare.org/users/sign_in). Note that account requests are manually validated, so be prepared to wait for a couple of hours or days before your account is created; if your account request is rejected, do not hesitate to contact us directly. You will also need to register your SSH key in your GitLab profile if you want to contribute code. ### Issues: Reporting Bugs You can report bugs in both the stable and unstable versions of Dynare. Before reporting a bug in the stable version of Dynare, please check the [Known Bugs](https://git.dynare.org/Dynare/dynare/wikis/Known-bugs-present-in-the-current-stable-version) page to ensure it has not already been encountered/fixed. If reporting a bug in the unstable version of Dynare, please ensure the bug exists in the latest [unstable Dynare snapshot](https://www.dynare.org/download/#snapshot). To report a bug in Dynare, simply open a Gitlab issue in the repository where the bug resides. For example, to report a bug in Dynare itself, go to the [Dynare repository issue page](https://git.dynare.org/Dynare/dynare/issues) and click on "New Issue." The minimal information to add is a subject and a description of the steps needed to reproduce the bug. However, the most helpful description would also provide the code to reproduce the bug (often times a `.mod` file). The most helpful `.mod` file is a minimal, quick-running example that reproduces the bug, but we’ll take anything that will help us squash a bug. To include short amounts of code, please paste it into the description box, using the appropriate [GitLab Flavored Markdown](https://docs.gitlab.com/ee/user/markdown.html) code. For larger amounds of code like `.mod` files, please create a new [GitLab snippet](https://git.dynare.org/dashboard/snippets) and provide the link in the description box. ### Issues: Enhancements Issues are not only used to report bugs. They are also used to ask for improvements to the codebase or new features to Dynare in general. Please be descriptive when asking for improvements or new features. Links or references to papers or detailed examples are helpful. Though our development priorities lay with those who finance Dynare and with what we think may most benefit the Dynare community, this does not mean we are closed to outside ideas for enhancements. On the contrary: we invite them! Moreover, if you are willing to program the enhancement you want, the odds of it being included in Dynare are much higher than if you needed us to do it. That said, it is best to create an issue with an enhancement idea **before** beginning the work. As stated above, this is important to avoid duplication of work and also because we wouldn’t want you to take the time to work on something that would not end up being included in Dynare. ## Get to Coding! So, now you’ve reported the bug or asked for an enhancemnt by creating a GitLab issue. That’s already a great help. Thank you! Now, if you want to go the extra mile, you’ll volunteer to contribute code to fix the GitLab issue you created above. Once we’ve agreed that you’ll do it, please do the following: 1. Clone the Dynare repository: * `git clone --recurse-submodules https://git.dynare.org/Dynare/dynare.git` 1. [Fork the Dynare repository](https://docs.gitlab.com/ee/gitlab-basics/fork-project.html) 1. Change into the `dynare` folder and add the forked repository as a remote: * `cd dynare` * `git remote add personal git@git.dynare.org:<>/dynare.git` 1. Create a branch to work on * `git checkout -b <>` 1. Do your work, all the while respecting the [Dynare Coding Guidelines](https://git.dynare.org/Dynare/dynare/-/wikis/CodingGuidelines) 1. You may also want to have a look at the [coding resources](https://git.dynare.org/Dynare/dynare/-/wikis/CodingResources) As you work, your forked repository will likely fall out of sync with the main Dynare repository as we’ll be working in parallel. No matter. Follow these steps to ensure your changes will be merge-able when they’re done: 1. Get the changes from the main Dynare repository: * `git checkout master` * `git fetch` * `git rebase origin master` 1. Move your changes on top of the current master branch of Dynare * `git checkout <>` * `git rebase origin/master` * This last command may cause a conflict. It is up to you to resolve this conflict. Once you’ve made the changes necessary to fix the bug or add an enhancement, ensure that it has been rebased on the master branch (following the steps above), commit it, push it to your forked Dynare repository, and create a pull request: 1. Get the latest changes from Dynare and rebase your branch on top of them (see above) 1. Commit your changes: * `git add <>` * `git commit -m "<> Closes: #<>"` 1. Push to your forked Dynare repository * `git push personal <>` 1. Create a [Merge Request](https://docs.gitlab.com/ee/gitlab-basics/add-merge-request.html) from the branch in your forked Dynare repository ## Tests The Dynare testsuite runs every time a commit is pushed, either in the official repository or in your personal repository, through [GitLab Continuous Integration](https://docs.gitlab.com/ee/ci/). It’s how we quickly catch bugs that may have been introduced by changes made. The output from the latest run of the test suite can be found in the `test_matlab` job associated to the [latest pipeline](https://git.dynare.org/Dynare/dynare/pipelines). This is also a good place to start fixing bugs. If you see a `.mod` file that doesn’t run in the test suite and think you can fix it, create an issue and once you have the go ahead, go for it! ### Integration tests It’s useful to contribute `.mod` files that test some aspect of Dynare that is not currently tested. A `.mod` file that runs into a bug is perfect. As the test suite currently takes several hours to run, we prefer you modify a current test to also create the bug you’ve found. If you can’t do that, please add a new test that runs as quickly as possible. It will contain only those commands necessary to create the bug, nothing more. To contribute a test, after having made an issue and cloned and forked the repository as described above, do the following: 1. Modify the `mod_and_m_tests` variable in `meson.build` with a entry containing your test file name 1. If any ancillary files are needed to run your test, please include them in the `'extra'` field 1. Add and commit your test file and `meson.build` as described above 1. Push and create a pull request as described above ### Unit tests So-called unit tests allow the test suite to check the correct functioning of the MATLAB/Octave functions contained in Dynare. To add a unit test you need to 1. add the `return % --*-- Unit tests --*--` at the end of the `function` to tell the testsuite that the file contains unit tests. 1. Add the particular tests at the end of the file after the `return` statement by 1. Starting a test with `%@test:INTEGER` 2. Adding a MATLAB/Octave test code that provides a pass/fail indicator `T` that takes on `true` if the test passed. 3. Closing the test with `%@eof:INTEGER` where `INTEGER` denotes the number of the test. An example testing the correct functionality of mode-computations for a normal distribution is ``` function m = compute_prior_mode(hyperparameters,shape) return % --*-- Unit tests --*-- %@test:1 % Normal density try m1 = compute_prior_mode([1 1],3); t(1) = true; catch t(1) = false; end %$ if t(1) t(2) = dassert(m1,1,1e-6); end T = all(t); %@eof:1 ``` You can also put a unit test after the closing `end`, but in this case you will need to preface each line with `%$`. See e.g. https://git.dynare.org/Dynare/dseries/-/commit/be4a4d39c125b92ee84ef876d86e6ec947c522b8