Skip to content

Releases: rahogaboom/rdx

v1.1.5

18 Jan 18:30
Compare
Choose a tag to compare
 rdx-1.1.5.tar.gz - 2019/01/18
    a. upgraded g++/clang++
    b. fix bug in MKRdxPat_test.cpp.  two memset()s in test 15 zero out
       twice as much memory as they should.  MKRdxPat.hpp and the test
       were unaffected.  this bug was detected by the upgraded version
       of g++(clang++ did not detect the bug).
    c. fix bug in MKRdxPat_perf_bgp.cpp.  absent input file segfaults.
       add NULL test on FILE pointer.
    d. re-org rdx directory
    e. re-design doc

v1.1.4

27 Aug 21:22
Compare
Choose a tag to compare
rdx-1.1.4.tar.gz - 
   a. doc updates
   b. add #include <cmath> header to BGP performance measurement
      executable
   c. changes related to eliminating compiler warnings from
      updated compiler versions:
       1. add 'unsigned' to member function arg
              MKRdxPat<app_data> *
          chg_max_rdx_nodes(const unsigned int new_max_rdx_nodes) const
       2. eliminate using ' as a printf flag for comma separation of
          large integer numbers - not standard
       3. remove 'unsigned' from 'unsigned int' declaration of args
          to scanf() function since scanf() wants int\* instead of
          unsigned int*