AgeSort asc/desc | Change |
---|---|
Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 Next | |
Mar 10, 2013 | |
7 years 10 months | Lots of vectors copies were made using push_back(). This is definitely not efficient! This has been replaced by vec_o = vec_i, we will see which impact it has on performances... |
Commit 1064, by Mathias Bavay | |
7 years 10 months | Porting Nander's implementation of Thomas algorithm (solver for tridiagonal matrix) to the matrix class |
Commit 1063, by Mathias Bavay | |
Mar 5, 2013 | |
7 years 10 months | Still tracking a stupid bug somewhere between meteoio, snowpack and alpine3d... Trying to remove some unecessary stuff |
Commit 1062, by Mathias Bavay | |
7 years 10 months | reverting an accidental commit from Hera |
Commit 1061, by Mathias Bavay | |
7 years 10 months | Still the wrong conversion for timeval |
Commit 1060, by Mathias Bavay | |
7 years 10 months | fixing some of the warnings found on Hera (sorry for not noticing before). All the size_t / unsigned int stuff will have to be addressed later |
Commit 1059, by Mathias Bavay | |
7 years 10 months | The A3DIO plugin was not properly reading data, this has been fixed. Some warnings have been turned off for osX (signedness and 32/64 bits because of size_t since we will have to redo all our indices to make they consistently rely on size_t) |
Commit 1058, by Mathias Bavay | |
Mar 4, 2013 | |
7 years 10 months | Trying to get rid of a pointer bug in A3DIO: the ifstream object does not need to be a class member (ie reducing its scope), simplifying some calls... |
Commit 1057, by Mathias Bavay | |
Feb 28, 2013 | |
7 years 10 months | make doc fehler behoben |
Commit 1056, by Till Schumann | |
7 years 10 months | Neu |
Commit 1055, by Till Schumann | |
Feb 21, 2013 | |
7 years 10 months | My previous commit was terrible... it simply made it impossible to define optional keys. This has now been fixed but required a change in the API. So, don't use Config::nothrow but IOUtils::nothrow instead. |
Commit 1054, by Mathias Bavay | |
7 years 10 months | The "nothrow" option was not properly forwarded in Config, leading to unnecessary throw/catch. The sun.cc example was set to executable. |
Commit 1053, by Mathias Bavay | |
Feb 18, 2013 | |
7 years 11 months | The static library and .lib were not being properly deleted when doing "make distclean" |
Commit 1052, by Mathias Bavay | |
Feb 15, 2013 | |
7 years 11 months | Fixing the indentation in libsmet and fixing the (very annoying) warnings in MathOptim.h. The cubic root optimizations have been tested and work as advertized (~3 times faster, largest relative error 1.2e-4). |
Commit 1051, by Mathias Bavay | |
7 years 11 months | This is a fix for Snowpack issue 291 : on Windows, when the file would stop right after [DATA} (ie without even a new line), the data section pointer would be invalid (set to -1) but a getline on it would not set eof and therefore the reading loop wo |
Commit 1050, by Mathias Bavay | |
Feb 14, 2013 | |
7 years 11 months | In order to try to be closer to the spirit of the STL, now the empty strings/vectors/lists are tested with .empty(), the first/last elements of vectors accessed with front()/back(), the empty strings are not contructed with string("") but with string |
Commit 1049, by Mathias Bavay | |
Feb 13, 2013 | |
7 years 11 months | Now, when libsmet attemps to write a station that does not contain any data, it will complain but will not throw an exception (otherwise when working with large numbers of stations, the odds of getting an exception are too high). An implementation fo |
Commit 1048, by Mathias Bavay | |
7 years 11 months | Cleaning up the A3DIO plugin |
Commit 1047, by Mathias Bavay | |
Feb 11, 2013 | |
7 years 11 months | Truncating the path+file down to file only for exceptions was not working on Windows (since the path delimiter is '\' instead of '/') |
Commit 1046, by Mathias Bavay | |
7 years 11 months | Lots of small fixes after running cppcheck on Windows: unused variables, use ++i instead of i++ for complex types (ie mostly iterators for us) for more performance, a few variables that could be passed as const&, use vector.empty() instead of vector. |
Commit 1045, by Mathias Bavay |