- Jan 02, 2018
-
-
Dmitri Naumov authored
Clang format run on near-the-header lines. Happy New Year
-
- Jul 27, 2017
-
-
Tom Fischer authored
-
- May 02, 2017
-
-
Dmitri Naumov authored
-
Dmitri Naumov authored
Especially on iterator types and 'new' allocations.
-
- Jan 09, 2017
-
-
Dmitri Naumov authored
-
- Jun 28, 2016
-
-
Tom Fischer authored
-
- Jun 21, 2016
-
-
Norihiro Watanabe authored
-
- Jun 10, 2016
-
-
Norihiro Watanabe authored
-
- May 26, 2016
-
-
Norihiro Watanabe authored
-
- May 17, 2016
-
-
Dmitri Naumov authored
-
- May 10, 2016
-
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
FileIO -> MeshLib::IO.
-
Tom Fischer authored
In order to make OGS more modular: - The {read/write}Mesh{From/To}File.{h,cpp} are moved from FileIO to MeshLib/IO. - The FileIO/Legacy folder was moved to MeshLib/IO/Legacy. - Include paths are changed according the changes above.
-
- May 03, 2016
-
-
Dmitri Naumov authored
-
- Mar 02, 2016
-
-
Christoph Lehmann authored
-
- Mar 01, 2016
-
-
Christoph Lehmann authored
-
- Feb 03, 2016
-
-
Lars Bilke authored
-
Lars Bilke authored
-
Lars Bilke authored
-
Lars Bilke authored
-
Lars Bilke authored
Test output files are written to ${CMAKE_BUILD_DIR}/Tests/Data. As a WIP data files have to be in ${CMAKE_SOURCE_DIR}../data
-
- Jan 22, 2016
-
-
Lars Bilke authored
-
- Jan 13, 2016
-
-
Dmitri Naumov authored
-
- Dec 10, 2015
-
-
wenqing authored
-
- Nov 16, 2015
-
-
wenqing authored
The results of this test are also included.
-
- Oct 21, 2015
-
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
Corrected also the include paths for files in MathLib folder and SimpleTests/MatrixTests/ folder.
-
Dmitri Naumov authored
-
- Oct 11, 2015
-
-
Dmitri Naumov authored
-
- Oct 07, 2015
-
-
wenqing authored
-
- Sep 21, 2015
-
-
Dmitri Naumov authored
This is automatic replacement with ag '(?<!std::)size_t(?!\w)' --ignore-dir=ThirdParty -l | xargs perl -pi.bak -e 's/(?<!std::)size_t(?!\w)/std::size_t/g'
-
- Aug 14, 2015
-
-
Dmitri Naumov authored
-
- Jul 09, 2015
-
-
Tom Fischer authored
-
- Feb 11, 2015
-
-
Lars Bilke authored
-
- Feb 10, 2015
-
-
Lars Bilke authored
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
-
Lars Bilke authored
Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
-