This project is mirrored from https://gitlab.opengeosys.org/ogs/ogs.git.
Pull mirroring updated .
- Jan 01, 2021
-
-
Dmitri Naumov authored
-
- Apr 10, 2020
-
-
Dmitri Naumov authored
-
- Jan 03, 2020
-
-
Dmitri Naumov authored
-
- Feb 27, 2019
-
-
Dmitri Naumov authored
-
- Jan 06, 2019
-
-
Dmitri Naumov authored
-
- Jan 02, 2018
-
-
Dmitri Naumov authored
Clang format run on near-the-header lines. Happy New Year
-
- May 30, 2017
-
-
Dmitri Naumov authored
-
- Apr 03, 2017
-
-
Yonghui56 authored
-
- Jan 09, 2017
-
-
Dmitri Naumov authored
-
- Nov 25, 2016
- Nov 22, 2016
-
-
Dmitri Naumov authored
-
- Oct 19, 2016
-
-
Yonghui56 authored
-
- Oct 10, 2016
- May 17, 2016
-
-
Dmitri Naumov authored
-
- Apr 21, 2016
-
-
Dmitri Naumov authored
-
Dmitri Naumov authored
The constructor performed two things simultaniously, which is not good for a ctor: Constructing the object and calculating the values at given points. If needed such code should be moved to a standalone algorithm.
-
Dmitri Naumov authored
This way an expensive copy must be performed by the caller and is not hidden in the ctor.
-
Dmitri Naumov authored
Reasoning: The vector's move operation is cheap and it covers the two cases of passed l-values and r-values w/o code duplication and templates. According to "Effective modern c++" Item 41: "Consider pass by value for copyable parameters that are cheap to move and always copied."
-
- Jan 13, 2016
-
-
Dmitri Naumov authored
-
- Aug 18, 2015
-
-
Tom Fischer authored
-
- Jul 17, 2015
-
-
Dmitri Naumov authored
-
- Jan 20, 2015
-
-
Lars Bilke authored
-
- Sep 17, 2014
-
-
Lars Bilke authored
-
- Sep 03, 2014
-
-
Dmitri Naumov authored
-
- Jul 24, 2013
-
-
Dmitri Naumov authored
-
- Mar 12, 2013
-
-
Using front() and back() saves some instructions. Avoid multiplication with m twice in return statement.
-
Tom Fischer authored
-
- Feb 19, 2013
-
-
Tom Fischer authored
-
- Feb 18, 2013
-
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
If the point to interpolate the value on is not located in any interval we choose either the first or the last interval and extrapolate the data. The algorithm for the determination of the interval is corrected.
-
- Jan 10, 2013
-
-
Lars Bilke authored
-
- Jan 02, 2013
-
-
Lars Bilke authored
-
- Nov 12, 2012
-
-
Dmitri Naumov authored
-