1. 16 3月, 2016 1 次提交
  2. 17 9月, 2015 2 次提交
  3. 30 7月, 2015 7 次提交
  4. 29 7月, 2015 1 次提交
  5. 26 7月, 2015 1 次提交
  6. 20 7月, 2015 2 次提交
  7. 17 7月, 2015 1 次提交
  8. 14 7月, 2015 1 次提交
  9. 11 7月, 2015 1 次提交
  10. 10 7月, 2015 1 次提交
  11. 09 7月, 2015 1 次提交
  12. 07 7月, 2015 2 次提交
  13. 28 6月, 2015 1 次提交
  14. 27 6月, 2015 1 次提交
    • J
      Edited python files to conform to pep8 · 77d3fbea
      joncrall 提交于
      Replaced not 'a in i' to 'a not in i'
      Replaced 'a == None' and 'a != None to 'a is None' and 'a is not None'
      Replaced 'type(x) == type' to 'isinstance(x, type)'
      Edited quotes to be consistent.
      Replaced 'from x import *' with explicit imports
      Used pep8 spacing in function signatures.
      Changed classes to inherit from object
      Removed unused imports
      77d3fbea
  15. 26 6月, 2015 1 次提交
    • J
      result_set bugfix · fb7588cf
      Jack Rae 提交于
      Zero-based boundary condition is not enforced for the variable size_t j,
      it was previously free to underflow.
      
      I have placed j-- as a condition within the for loop to enforce this.
      See this
      thread for considerations on good style for decrementing size_t loops:
      http://stackoverflow.com/questions/7224386/iterating-with-size-t-0-as-a-boundary-condition
      
      Placing the j-- at the beginning of the loop is equivalent to --j at the
      end, so the functionality is identical.
      
      Updated COPYING as this is standard / mandatory practice for Google employees'
      contributions to open source projects.
      fb7588cf
  16. 13 6月, 2015 1 次提交
  17. 12 6月, 2015 1 次提交
    • H
      fix constructor and deconstructor of the KDTreeIndex::Node. This will cause... · d1a3d528
      Han Hu 提交于
      fix constructor and deconstructor of the KDTreeIndex::Node. This will cause the serialization work incorrectly in the case of the debug version and when the child pointer is not initialized as NULL automatically.
      
      Because in saving node, serilazation relies on leaf_node = ((child1==NULL) && (child2==NULL)) to determine whether it's leaf or not.
      d1a3d528
  18. 25 5月, 2015 2 次提交
  19. 16 3月, 2015 2 次提交
  20. 15 3月, 2015 2 次提交
  21. 16 9月, 2014 2 次提交
  22. 29 8月, 2014 6 次提交