- Apr 15, 2019
-
-
Tomáš Oberhuber authored
-
- Apr 14, 2019
-
-
Tomáš Oberhuber authored
-
Tomáš Oberhuber authored
-
- Apr 13, 2019
-
-
Tomáš Oberhuber authored
-
Tomáš Oberhuber authored
-
- Apr 12, 2019
-
-
Tomáš Oberhuber authored
-
- Apr 11, 2019
-
-
Tomáš Oberhuber authored
-
-
Tomáš Oberhuber authored
-
- Jan 25, 2019
-
-
Jakub Klinkovský authored
TNL is not supposed to have any external dependencies, so an empty config file is useless. If some marginal parts of the project (such as code for image processing) need to depend on some non-standard library, they should be split into a separate module/project so that the dependencies can be properly specified. For now, the macros are specified as compiler parameters. Client software using the affected headers will have to do the same.
-
- Sep 29, 2018
-
-
Jakub Klinkovský authored
Now that error handling is done via exceptions, the return value is free for more sensible things.
-
- Sep 28, 2018
-
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
The method was either returning true or throwing an exception, so it can simply return void or throw an exception.
-
Jakub Klinkovský authored
-
- Sep 15, 2018
-
-
Jakub Klinkovský authored
The original was simpler/more readable and we require GCC 5.0 now. This reverts commit d920a278.
-
- Sep 05, 2018
-
-
Jakub Klinkovský authored
Also added missing 'const' to the getMemoryElement method for host.
-
- Sep 03, 2018
-
-
Jakub Klinkovský authored
-
- Sep 02, 2018
-
-
Tomáš Oberhuber authored
-
Tomáš Oberhuber authored
-
- Aug 20, 2018
-
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
- Aug 16, 2018
-
-
Tomáš Oberhuber authored
Implemented Array:containsOnlyValue. Restored implementation of ArrayOperations::memoryCompare on host.
-
- Aug 13, 2018
-
-
Tomáš Oberhuber authored
Implemented a method Array::checkValue which returns true only if there is an element with given value in the array.
-
- May 05, 2018
-
-
- Oct 17, 2017
-
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
- separate data types for input arrays of binary operations (necessary for the equality comparison of two arrays of different type) - added separate template parameter for ResultType, which defaults to the RealType (the goal is to allow sum of bool vectors into int instead of bool)
-
- Oct 14, 2017
-
-
Jakub Klinkovský authored
-
- Jul 31, 2017
-
-
Jakub Klinkovský authored
-
- Jun 21, 2017
-
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
- Jun 20, 2017
-
-
Jakub Klinkovský authored
-
- Nov 29, 2016
-
-
Tomáš Oberhuber authored
-
- Nov 19, 2016
-
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
- Nov 11, 2016
-
-
Jakub Klinkovský authored
-
- Sep 27, 2016
-
-
Jakub Klinkovský authored
- base class with non-virtual destructor causes undefined behaviour - missing return statements at the end of non-void functions - missing const before char* function argument - reordered initialization of class members - misleading indentation after for statement - fixed use of uninitialized variables - fixed unsequenced modification and access to variables (the C++ standard does not define the evaluation order of operands, so expressions with side-effects such as j++ cause undefined behaviour)
-
- Sep 04, 2016
-
-
Tomáš Oberhuber authored
-