From c98e44de352f1171e065c35c2c6d50a2b0fb767e Mon Sep 17 00:00:00 2001
From: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@hhu.de>
Date: Wed, 20 Sep 2017 15:17:18 +0200
Subject: [PATCH] corrected a typo in the vignette

---
 vignettes/cplexAPI.Rnw | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vignettes/cplexAPI.Rnw b/vignettes/cplexAPI.Rnw
index 68d9c86..2ccc17e 100644
--- a/vignettes/cplexAPI.Rnw
+++ b/vignettes/cplexAPI.Rnw
@@ -133,7 +133,7 @@ cn <- c("x1", "x2", "x3")
 rn <- c("q1", "q2", "q3")
 @
 The constraint matrix is passed in column major order format. \textbf{Be
-careful here:} all indices start with 0! Begin indices of rows.
+careful here:} all indices start with 0! Begin indices of rows in a column.
 <<>>=
 beg <- c(0, 3, 6)
 @
@@ -241,10 +241,10 @@ lb <- c(0.0, 0.0, 0.0, 2.0)
 @
 Variable upper bounds.
 <<>>=
-ub <- c(40.0, CPX_INFBOUND, CPX_INFBOUND, 3.0)
+ub <- c(40.0, CPX_INFBOUND, CPX_INFBOUND, 4.0)
 @
 The constraint matrix is passed in column major order format. \textbf{Be
-careful here:} all indices start with 0! Begin indices of rows.
+careful here:} all indices start with 0! Begin indices of rows in a column.
 <<>>=
 beg <- c(0, 2, 5, 7)
 @
-- 
GitLab