singleGAMSfile: Merge GAMS code into single file

Description Usage Arguments Author(s) Examples

View source: R/singleGAMSfile.R

Description

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

Usage

1
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(s)

Jan Philipp Dietrich, Anastasis Giannousakis

Examples

1
2
3
4
5
# 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)

gms documentation built on July 2, 2020, 2:36 a.m.