Skip to content

Commit 04e6945

Browse files
committed
git-svn-id: svn://svn.r-forge.r-project.org/svnroot/cropsim@202 edb9625f-4e0d-4859-8d74-9fd3b1da38cb
1 parent 542448f commit 04e6945

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

pkg/Rlintul/src/LINTUL1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using namespace std;
99
#include <algorithm>
1010
#include <cmath>
1111

12-
#include "SimUtil.h"
12+
#include <SimUtil.h>
1313
#include "LINTUL1.h"
1414

1515
void Lintul1Model::output_initialize() {

pkg/Rlintul/src/LINTUL1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "SimUtil.h"
1+
#include <SimUtil.h>
22

33
struct Lintul1Output {
44
std::vector<unsigned> step;

pkg/Rlintul/src/LINTUL2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using namespace std;
1010
#include <algorithm>
1111
#include <cmath>
1212

13-
#include "SimUtil.h"
13+
#include <SimUtil.h>
1414
#include "LINTUL2.h"
1515

1616

pkg/Rlintul/src/LINTUL2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Date: May 2016
44
License: GNU General Public License (GNU GPL) v. 2
55
*/
66

7-
#include "SimUtil.h"
7+
#include <SimUtil.h>
88

99
struct Lintul2Output {
1010
std::vector<unsigned> step;

pkg/Rlintul/src/LINTUL3.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using namespace std;
1111
#include <vector>
1212
#include <math.h>
1313

14-
#include "SimUtil.h"
14+
#include <SimUtil.h>
1515
#include "LINTUL3.h"
1616

1717
#ifndef M_PI

pkg/Rlintul/src/LINTUL3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//#include "SimDate.h"
2-
#include "SimUtil.h"
2+
#include <SimUtil.h>
33
#include <string>
44

55

pkg/Rlintul/src/LINTUL3_R_interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using namespace Rcpp;
33
using namespace std;
44
#include <vector>
5-
#include "SimUtil.h"
5+
#include <SimUtil.h>
66
#include "LINTUL3.h"
77
#include "R_interface_util.h"
88

pkg/Rlintul/src/LINTUL3_crop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using namespace std;
22
#include <vector>
33
#include <algorithm>
44
#include <iostream>
5-
#include "SimUtil.h"
5+
#include <SimUtil.h>
66
#include "LINTUL3.h"
77
#include <cmath>
88

pkg/Rlintul/src/LINUTL1_R_Interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ License: GNU General Public License (GNU GPL) v. 2
99
using namespace Rcpp;
1010
using namespace std;
1111
#include <vector>
12-
#include "SimUtil.h" //weather struct
12+
#include <SimUtil.h> //weather struct
1313
#include "R_interface_util.h"
1414
#include "LINTUL1.h"
1515

pkg/Rlintul/src/LINUTL2_R_Interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using namespace Rcpp;
33
using namespace std;
44
#include <vector>
5-
#include "SimUtil.h"
5+
#include <SimUtil.h>
66
#include "LINTUL2.h"
77
#include "R_interface_util.h"
88

0 commit comments

Comments
 (0)