Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/manual/manual/installation/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Depending on your configuration, you may encounter difficulties when installing

.. code-block:: bash

pip3 install --break-system-packages codac
pip3 install --break-system-packages codac --pre

.. admonition:: macOS Big Sur and later (x86_64)

Expand Down
10 changes: 6 additions & 4 deletions doc/manual/manual/intervals/IntervalVector_class.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ Common predicates include:
:end-before: [intervalvector-class-4-end]
:dedent: 4

Advanced operations
-------------------
Other operations
----------------

As for intervals, typical advanced operations on boxes include:
As for intervals, typical operations on boxes include:

.. list-table:: Common advanced methods for a given box :math:`[\mathbf{x}]`
:widths: 30 70
Expand All @@ -147,8 +147,10 @@ As for intervals, typical advanced operations on boxes include:
- Description
* - ``inflate(rad)``
- Expands the box by ``±rad`` (scalar radius for common inflation, or vector radius for specifying different inflation on each component).
* - ``bisect([ratio])``
* - ``bisect_largest([ratio])``
- Splits the box into two sub-boxes along the widest dimension.
* - ``bisect(i,[ratio])``
- Splits the box into two sub-boxes along the :math:`i`-th dimension.
* - ``rand()``
- Returns a random sample ``Vector`` inside the box (when non-empty).
* - ``init()``
Expand Down
1 change: 0 additions & 1 deletion tests/core/matrices/codac2_tests_Matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ def test_fnc_Matrix(self):
def test_def_Matrix_zero_init(self):

x = Matrix(2,2)
print(x)
self.assertTrue(x(0,0) == 0)
self.assertTrue(x(1,0) == 0)
self.assertTrue(x(0,1) == 0)
Expand Down