This PR addresses issue #256. The transform_inputs_outputs method in the Transform class now iterates over self.transform_domain.input_variables instead of self.domain.input_variables. This change ensures that any transformations are applied to the modified domain (self.transform_domain) rather than the original domain (self.domain).
This PR addresses issue #256. The
transform_inputs_outputs
method in theTransform
class now iterates overself.transform_domain.input_variables
instead ofself.domain.input_variables
. This change ensures that any transformations are applied to the modified domain (self.transform_domain
) rather than the original domain (self.domain
).Fixes #256.