File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,16 @@ Class Reference
3232.. autoclass :: Domain
3333 :members:
3434
35+
36+ :class: `ProductDomain ` - Cartesian product of multiple domains
37+ --------------------------------------------------------------
38+
39+ Class Reference
40+ ~~~~~~~~~~~~~~~
41+ .. autoclass :: ProductDomain
42+ :members:
43+
44+
3545:class: `RealDomain ` - (A subset of) Real Numbers
3646------------------------------------------------
3747
@@ -58,4 +68,4 @@ This domain is used by :class:`MultinomialModel`.
5868Class Reference
5969~~~~~~~~~~~~~~~
6070.. autoclass :: MultinomialDomain
61- :members:
71+ :members:
Original file line number Diff line number Diff line change @@ -152,8 +152,8 @@ class ProductDomain(Domain):
152152 """
153153 A domain made from the cartesian product of other domains.
154154
155- :param Domain domains: ``Domain`` objects as separate arguments,
156- or as a singe list of ``Domain``s .
155+ :param Domain domains: ``Domain`` instances as separate arguments,
156+ or as a singe list of ``Domain`` instances .
157157 """
158158 def __init__ (self , * domains ):
159159
@@ -268,7 +268,7 @@ def from_regular_arrays(self, arrays):
268268 corresponding to the factor domains into a single array
269269 with the dtype of the ``ProductDomain``.
270270
271- :param list array: A list of ``np.ndarray``s
271+ :param list array: A list with each element of type ``np.ndarray``
272272
273273 :rtype: `np.ndarray`
274274 """
You can’t perform that action at this time.
0 commit comments