3b07f4cb3d
* An overhaul of the internal memory management to make it more efficient * Support for the AdjoinableMPI API (thanks to Jean Utke) * Overhaul of the external functions interface (thanks to Jean Utke) * Support for piecewise linearizations of piecewise smooth functions * Support for pkg-config (thanks to Oliver Sander) * Computations on the NVIDIA-GPU in forward mode using CUDA * Overhaul of the traceless forward mode. * Support for sparsity in traceless forward mode. * Fixes in higher order tensor propagation * Fix a function name conflict address() -> tensor_address() * Various other small misceleneous fixes - Patch added * no-return-in-non-void-adouble_tl_cpp.patch OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/adolc?expand=0&rev=39
13 lines
381 B
Diff
13 lines
381 B
Diff
diff --git a/ADOL-C/src/adouble_tl.cpp b/ADOL-C/src/adouble_tl.cpp
|
|
index d72c538..9deaec7 100644
|
|
--- a/ADOL-C/src/adouble_tl.cpp
|
|
+++ b/ADOL-C/src/adouble_tl.cpp
|
|
@@ -72,6 +72,7 @@ istream& operator >> ( istream& in, adouble& a) {
|
|
while (c!=')' && !in.eof());
|
|
return in;
|
|
}
|
|
+ return in;
|
|
}
|
|
|
|
/**************** ADOLC_TRACELESS_SPARSE_PATTERN ****************************/
|