This project is mirrored from https://gitlab.opengeosys.org/ogs/ogs.git.
Pull mirroring updated .
- May 17, 2021
-
-
Dmitri Naumov authored
-
- Apr 04, 2021
-
-
Dmitri Naumov authored
Adding a single space in incorrectly broken lines.
-
Dmitri Naumov authored
-
- Jan 19, 2021
-
-
Dmitri Naumov authored
-
- 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 10, 2017
-
-
Dmitri Naumov authored
-
- Jan 09, 2017
-
-
Dmitri Naumov authored
-
- Nov 25, 2016
- Nov 24, 2016
-
-
Dmitri Naumov authored
-
- Nov 22, 2016
-
-
Dmitri Naumov authored
-
- Oct 19, 2016
-
-
Yonghui56 authored
-
- Oct 10, 2016
- Jun 14, 2016
-
-
Norihiro Watanabe authored
-
- 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
-