1. 04 Aug, 2016 1 commit
    • Jason Rhinelander's avatar
      Eigen support for special matrix objects · 9ffb3dda
      Jason Rhinelander authored
      Functions returning specialized Eigen matrices like Eigen::DiagonalMatrix and
      Eigen::SelfAdjointView--which inherit from EigenBase but not
      DenseBase--isn't currently allowed; such classes are explicitly copyable
      into a Matrix (by definition), and so we can support functions that
      return them by copying the value into a Matrix then casting that
      resulting dense Matrix into a numpy.ndarray.  This commit does exactly
      that.
      9ffb3dda
  2. 01 Aug, 2016 1 commit
  3. 19 Jul, 2016 1 commit
  4. 18 Jul, 2016 2 commits
  5. 12 Jul, 2016 1 commit
  6. 11 Jul, 2016 3 commits
  7. 10 Jul, 2016 2 commits
  8. 08 Jul, 2016 2 commits
  9. 30 Jun, 2016 3 commits
  10. 28 Jun, 2016 1 commit
  11. 22 Jun, 2016 2 commits
  12. 16 Jun, 2016 1 commit
  13. 14 Jun, 2016 4 commits
  14. 03 Jun, 2016 6 commits
  15. 31 May, 2016 1 commit
  16. 26 May, 2016 4 commits
    • Dean Moldovan's avatar
      Update CMake build documentation · 24ddf4b3
      Dean Moldovan authored
      24ddf4b3
    • Wenzel Jakob's avatar
      minor update to release process · 2c76c693
      Wenzel Jakob authored
      2c76c693
    • Yung-Yu Chen's avatar
      2240ce2a
    • Wenzel Jakob's avatar
      Redesigned virtual call mechanism and user-facing syntax (breaking change!) · 86d825f3
      Wenzel Jakob authored
      Sergey Lyskov pointed out that the trampoline mechanism used to override
      virtual methods from within Python caused unnecessary overheads when
      instantiating the original (i.e. non-extended) class.
      
      This commit removes this inefficiency, but some syntax changes were
      needed to achieve this. Projects using this features will need to make a
      few changes:
      
      In particular, the example below shows the old syntax to instantiate a
      class with a trampoline:
      
      class_<TrampolineClass>("MyClass")
          .alias<MyClass>()
          ....
      
      This is what should be used now:
      
      class_<MyClass, std::unique_ptr<MyClass, TrampolineClass>("MyClass")
          ....
      
      Importantly, the trampoline class is now specified as the *third*
      argument to the class_ template, and the alias<..>() call is gone. The
      second argument with the unique pointer is simply the default holder
      type used by pybind11.
      86d825f3
  17. 24 May, 2016 1 commit
  18. 21 May, 2016 1 commit
  19. 19 May, 2016 2 commits
  20. 17 May, 2016 1 commit