Skip to content

Commit

Permalink
remove pairwise policy
Browse files Browse the repository at this point in the history
  • Loading branch information
MUCDK committed Oct 10, 2023
1 parent 501b018 commit 0419670
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/moscot/problems/generic/_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ def _base_problem_type(self) -> Type[B]:

@property
def _valid_policies(self) -> Tuple[Policy_t, ...]:
return _constants.SEQUENTIAL, _constants.PAIRWISE, _constants.EXPLICIT # type: ignore[return-value]
return _constants.SEQUENTIAL, _constants.EXPLICIT # type: ignore[return-value]


class NeuralProblem(CompoundProblem[K, B], GenericAnalysisMixin[K, B]):
Expand Down Expand Up @@ -564,7 +564,7 @@ def _base_problem_type(self) -> Type["NeuralProblem[K, B]"]: # type:ignore[over

@property
def _valid_policies(self) -> Tuple[Policy_t, ...]:
return _constants.SEQUENTIAL, _constants.PAIRWISE, _constants.EXPLICIT # type: ignore[return-value]
return _constants.SEQUENTIAL, _constants.EXPLICIT # type: ignore[return-value]


class ConditionalNeuralProblem(CondOTProblem, GenericAnalysisMixin[K, B]):
Expand Down Expand Up @@ -649,7 +649,7 @@ def _base_problem_type(self) -> Type[CondOTProblem]:

@property
def _valid_policies(self) -> Tuple[Policy_t, ...]:
return _constants.SEQUENTIAL, _constants.PAIRWISE, _constants.EXPLICIT # type: ignore[return-value]
return _constants.SEQUENTIAL, _constants.EXPLICIT # type: ignore[return-value]


class MGNeuralProblem(CompoundProblem[K, B], GenericAnalysisMixin[K, B]):
Expand Down Expand Up @@ -718,4 +718,4 @@ def _base_problem_type(self) -> Type["NeuralProblem[K, B]"]: # type:ignore[over

@property
def _valid_policies(self) -> Tuple[Policy_t, ...]:
return _constants.SEQUENTIAL, _constants.PAIRWISE, _constants.EXPLICIT # type: ignore[return-value]
return _constants.SEQUENTIAL, _constants.EXPLICIT # type: ignore[return-value]

0 comments on commit 0419670

Please sign in to comment.