Learn R Programming

gms (version 0.4.0)

singleGAMSfile: Merge GAMS code into single file

Description

This function merges GAMS code which is distributed over severals files into a single GAMS file.

Usage

singleGAMSfile(modelpath = ".", mainfile = "main.gms", output = "full.gms")

Arguments

modelpath

The path where the model is stored

mainfile

The path to the main gams file (relative to the model path)

output

Name of the single output GAMS file.

Author

Jan Philipp Dietrich, Anastasis Giannousakis

Examples

Run this code
# copy dummymodel create single gms file out of it
file.copy(system.file("dummymodel",package="gms"),tempdir(), recursive = TRUE)
model      <- paste0(tempdir(),"/dummymodel")
singlefile <- paste0(tempdir(),"/full.gms")
singleGAMSfile(modelpath=model, output=singlefile)

Run the code above in your browser using DataLab