LSST Applications g0265f82a02+d6b5cd48b5,g02d81e74bb+80768bd682,g04242d3e92+8eaa23c173,g06b2ea86fd+734f9505a2,g2079a07aa2+14824f138e,g212a7c68fe+5f4fc2ea00,g2305ad1205+293ab1327e,g2bbee38e9b+d6b5cd48b5,g337abbeb29+d6b5cd48b5,g3ddfee87b4+8eaa23c173,g487adcacf7+abec5a19c5,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+97ef3b4495,g5a732f18d5+66d966b544,g5d7b63bc56+636c3c3fd8,g64a986408d+80768bd682,g858d7b2824+80768bd682,g8a8a8dda67+a6fc98d2e7,g99cad8db69+6282a5f541,g9ddcbc5298+d4bad12328,ga1e77700b3+246acaaf9c,ga8c6da7877+9e3c062e8e,gb0e22166c9+3863383f4c,gb6a65358fc+d6b5cd48b5,gba4ed39666+9664299f35,gbb8dafda3b+60f904e7bc,gc120e1dc64+1bf26d0180,gc28159a63d+d6b5cd48b5,gcf0d15dbbd+8eaa23c173,gd2a12a3803+f8351bc914,gdaeeff99f8+a38ce5ea23,ge79ae78c31+d6b5cd48b5,gee10cc3b42+a6fc98d2e7,gf1cff7945b+80768bd682,v24.1.5.rc1
LSST Data Management Base Package
Loading...
Searching...
No Matches
Functions
lsst.pex.config.comparison Namespace Reference

Functions

 getComparisonName (name1, name2)
 
 compareScalars (name, v1, v2, output, rtol=1e-8, atol=1e-8, dtype=None)
 
 compareConfigs (name, c1, c2, shortcut=True, rtol=1e-8, atol=1e-8, output=None)
 

Detailed Description

Helper functions for comparing `lsst.pex.config.Config` instancess.

Theses function should be use for any comparison in a `lsst.pex.Config.compare`
or `lsst.pex.config.Field._compare` implementation, as they take care of
writing messages as well as floating-point comparisons and shortcuts.

Function Documentation

◆ compareConfigs()

lsst.pex.config.comparison.compareConfigs ( name,
c1,
c2,
shortcut = True,
rtol = 1e-8,
atol = 1e-8,
output = None )
Compare two `lsst.pex.config.Config` instances for equality.

This function is a helper for `lsst.pex.config.Config.compare`.

Parameters
----------
name : `str`
    Name to use when reporting differences, typically created by
    `getComparisonName`.
c1 : `lsst.pex.config.Config`
    Left-hand side config to compare.
c2 : `lsst.pex.config.Config`
    Right-hand side config to compare.
shortcut : `bool`, optional
    If `True`, return as soon as an inequality is found. Default is `True`.
rtol : `float`, optional
    Relative tolerance for floating point comparisons.
atol : `float`, optional
    Absolute tolerance for floating point comparisons.
output : callable, optional
    A callable that takes a string, used (possibly repeatedly) to report
    inequalities. For example: `print`.

Returns
-------
areEqual : `bool`
    `True` when the two `lsst.pex.config.Config` instances are equal.
    `False` if there is an inequality.

See Also
--------
lsst.pex.config.compareScalars

Notes
-----
Floating point comparisons are performed by `numpy.allclose`.

If ``c1`` or ``c2`` contain `~lsst.pex.config.RegistryField` or
`~lsst.pex.config.ConfigChoiceField` instances, *unselected*
`~lsst.pex.config.Config` instances will not be compared.

Definition at line 111 of file comparison.py.

111def compareConfigs(name, c1, c2, shortcut=True, rtol=1e-8, atol=1e-8, output=None):
112 """Compare two `lsst.pex.config.Config` instances for equality.
113
114 This function is a helper for `lsst.pex.config.Config.compare`.
115
116 Parameters
117 ----------
118 name : `str`
119 Name to use when reporting differences, typically created by
120 `getComparisonName`.
121 c1 : `lsst.pex.config.Config`
122 Left-hand side config to compare.
123 c2 : `lsst.pex.config.Config`
124 Right-hand side config to compare.
125 shortcut : `bool`, optional
126 If `True`, return as soon as an inequality is found. Default is `True`.
127 rtol : `float`, optional
128 Relative tolerance for floating point comparisons.
129 atol : `float`, optional
130 Absolute tolerance for floating point comparisons.
131 output : callable, optional
132 A callable that takes a string, used (possibly repeatedly) to report
133 inequalities. For example: `print`.
134
135 Returns
136 -------
137 areEqual : `bool`
138 `True` when the two `lsst.pex.config.Config` instances are equal.
139 `False` if there is an inequality.
140
141 See Also
142 --------
143 lsst.pex.config.compareScalars
144
145 Notes
146 -----
147 Floating point comparisons are performed by `numpy.allclose`.
148
149 If ``c1`` or ``c2`` contain `~lsst.pex.config.RegistryField` or
150 `~lsst.pex.config.ConfigChoiceField` instances, *unselected*
151 `~lsst.pex.config.Config` instances will not be compared.
152 """
153 assert name is not None
154 if c1 is None:
155 if c2 is None:
156 return True
157 else:
158 if output is not None:
159 output("LHS is None for %s" % name)
160 return False
161 else:
162 if c2 is None:
163 if output is not None:
164 output("RHS is None for %s" % name)
165 return False
166 if type(c1) is not type(c2):
167 if output is not None:
168 output(f"Config types do not match for {name}: {type(c1)} != {type(c2)}")
169 return False
170 equal = True
171 for field in c1._fields.values():
172 result = field._compare(c1, c2, shortcut=shortcut, rtol=rtol, atol=atol, output=output)
173 if not result and shortcut:
174 return False
175 equal = equal and result
176 return equal

◆ compareScalars()

lsst.pex.config.comparison.compareScalars ( name,
v1,
v2,
output,
rtol = 1e-8,
atol = 1e-8,
dtype = None )
Compare two scalar values for equality.

This function is a helper for `lsst.pex.config.Config.compare`.

Parameters
----------
name : `str`
    Name to use when reporting differences, typically created by
    `getComparisonName`.
v1 : object
    Left-hand side value to compare.
v2 : object
    Right-hand side value to compare.
output : callable or `None`
    A callable that takes a string, used (possibly repeatedly) to report
    inequalities (for example, `print`). Set to `None` to disable output.
rtol : `float`, optional
    Relative tolerance for floating point comparisons.
atol : `float`, optional
    Absolute tolerance for floating point comparisons.
dtype : class, optional
    Data type of values for comparison. May be `None` if values are not
    floating-point.

Returns
-------
areEqual : `bool`
    `True` if the values are equal, `False` if they are not.

See Also
--------
lsst.pex.config.compareConfigs

Notes
-----
Floating point comparisons are performed by `numpy.allclose`.

Definition at line 62 of file comparison.py.

62def compareScalars(name, v1, v2, output, rtol=1e-8, atol=1e-8, dtype=None):
63 """Compare two scalar values for equality.
64
65 This function is a helper for `lsst.pex.config.Config.compare`.
66
67 Parameters
68 ----------
69 name : `str`
70 Name to use when reporting differences, typically created by
71 `getComparisonName`.
72 v1 : object
73 Left-hand side value to compare.
74 v2 : object
75 Right-hand side value to compare.
76 output : callable or `None`
77 A callable that takes a string, used (possibly repeatedly) to report
78 inequalities (for example, `print`). Set to `None` to disable output.
79 rtol : `float`, optional
80 Relative tolerance for floating point comparisons.
81 atol : `float`, optional
82 Absolute tolerance for floating point comparisons.
83 dtype : class, optional
84 Data type of values for comparison. May be `None` if values are not
85 floating-point.
86
87 Returns
88 -------
89 areEqual : `bool`
90 `True` if the values are equal, `False` if they are not.
91
92 See Also
93 --------
94 lsst.pex.config.compareConfigs
95
96 Notes
97 -----
98 Floating point comparisons are performed by `numpy.allclose`.
99 """
100 if v1 is None or v2 is None:
101 result = v1 == v2
102 elif dtype in (float, complex):
103 result = numpy.allclose(v1, v2, rtol=rtol, atol=atol) or (numpy.isnan(v1) and numpy.isnan(v2))
104 else:
105 result = v1 == v2
106 if not result and output is not None:
107 output(f"Inequality in {name}: {v1!r} != {v2!r}")
108 return result
109
110

◆ getComparisonName()

lsst.pex.config.comparison.getComparisonName ( name1,
name2 )
Create a comparison name that is used for printed output of comparisons.

Parameters
----------
name1 : `str`
    Name of the first configuration.
name2 : `str`
    Name of the second configuration.

Returns
-------
name : `str`
    When ``name1`` and ``name2`` are equal, the returned name is
    simply one of the names. When they are different the returned name is
    formatted as ``"{name1} / {name2}"``.

Definition at line 40 of file comparison.py.

40def getComparisonName(name1, name2):
41 """Create a comparison name that is used for printed output of comparisons.
42
43 Parameters
44 ----------
45 name1 : `str`
46 Name of the first configuration.
47 name2 : `str`
48 Name of the second configuration.
49
50 Returns
51 -------
52 name : `str`
53 When ``name1`` and ``name2`` are equal, the returned name is
54 simply one of the names. When they are different the returned name is
55 formatted as ``"{name1} / {name2}"``.
56 """
57 if name1 != name2:
58 return f"{name1} / {name2}"
59 return name1
60
61