forked from remindmodel/remind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.gms
17 lines (15 loc) · 883 Bytes
/
module.gms
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
*** | (C) 2006-2024 Potsdam Institute for Climate Impact Research (PIK)
*** | authors, and contributors see CITATION.cff file. This file is part
*** | of REMIND and licensed under AGPL-3.0-or-later. Under Section 7 of
*** | AGPL-3.0, you are granted additional permissions described in the
*** | REMIND License Exception, version 1.0 (see LICENSE file).
*** | Contact: [email protected]
*** SOF ./modules/21_tax/module.gms
*' @title Tax Module
*'
*' @description The tax module includes different types of taxes or ignores all taxes.
*###################### R SECTION START (MODULETYPES) ##########################
$Ifi "%tax%" == "off" $include "./modules/21_tax/off/realization.gms"
$Ifi "%tax%" == "on" $include "./modules/21_tax/on/realization.gms"
*###################### R SECTION END (MODULETYPES) ############################
*** EOF ./modules/21_tax/module.gms