Skip to content
Snippets Groups Projects
  1. May 25, 2020
  2. May 18, 2020
  3. May 17, 2020
  4. May 15, 2020
  5. Apr 27, 2020
  6. Apr 08, 2020
  7. Apr 06, 2020
  8. Apr 04, 2020
  9. Mar 20, 2020
  10. Mar 11, 2020
  11. Mar 09, 2020
  12. Mar 06, 2020
  13. Jan 23, 2020
    • Gordian Edenhofer's avatar
      operator.py: Raise not-implemented in matmul call · 40b6376b
      Gordian Edenhofer authored and Martin Reinecke's avatar Martin Reinecke committed
      Contrary to other overloaded operators, the `__matmul__` call apparently
      needs to raise an exception instead of returning `NotImplemented`. This
      behaviour can be seen for example in:
      
      ```python
      psp = ift.RGSpace(512)
      m = ift.MaskOperator(ift.Field.from_raw(psp, np.random.randint(0, 2, 512)))
      m(ift.from_random("normal", m.domain).val) is NotImplemented
      ```
      
      which should be invalid and raise an exception but previously returned
      `True` instead.
      40b6376b
  14. Dec 06, 2019
  15. Dec 05, 2019
    • Gordian Edenhofer's avatar
      Swap order of arguments of ScalingOperator · f75a49a8
      Gordian Edenhofer authored
      Make the ScalingOperator consistent with `from_global_data`, `full` and
      possibly other operators which take the domain as first argument. This
      breaks the currently enforced consistency with the `DiagonalOperator`
      which takes a field as first argument and the domain only as an optional
      keyword argument.
      
      Fixes #279.
      f75a49a8
  16. Nov 28, 2019
  17. Nov 26, 2019
  18. Oct 29, 2019
  19. Apr 03, 2019
  20. Apr 01, 2019
  21. Mar 14, 2019
  22. Feb 28, 2019
  23. Feb 12, 2019
  24. Jan 17, 2019
  25. Jan 16, 2019
  26. Jan 14, 2019
  27. Jan 13, 2019
  28. Jan 07, 2019
Loading