Skip to content

Commit cdbc318

Browse files
committed
Fixed compile problem
1 parent 7d3761f commit cdbc318

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lrsplines2D/app/loglikelyhood.C

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ int main(int argc, char *argv[])
7272
std::cout << "Min: " << extent[6] << ", max: " << extent[7] << std::endl;
7373

7474
double loglh2 = 0.0;
75-
std::vector<double> dummy;
76-
double loglh = LogLikelyhood::compute(residuals, Tny, true, loglh2, dummy);
75+
double loglh = LogLikelyhood::compute(residuals, Tny, true, loglh2);
7776
printf("Loglikelyhood: %7.13f, %7.13f \n",loglh, loglh2);
7877
}

lrsplines2D/app/loglikelyhoodFixed.C

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ int main(int argc, char *argv[])
7272
std::cout << "Min: " << extent[6] << ", max: " << extent[7] << std::endl;
7373

7474
double loglh2 = 0.0;
75-
std::vector<double> dummy;
76-
double loglh = LogLikelyhood::compute(residuals, Tny, false, loglh2, dummy);
75+
double loglh = LogLikelyhood::compute(residuals, Tny, false, loglh2);
7776
printf("Loglikelyhood: %7.13f, %7.13f \n",loglh, loglh2);
7877
}

0 commit comments

Comments
 (0)