constraint.py 1.4 KB
Newer Older
1
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2
#
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14 15 16
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import paddle


17
class Constraint:
18
    """Constraint condition for random variable."""
19 20 21 22 23 24 25 26 27 28 29 30 31 32

    def __call__(self, value):
        raise NotImplementedError


class Real(Constraint):
    def __call__(self, value):
        return value == value


class Range(Constraint):
    def __init__(self, lower, upper):
        self._lower = lower
        self._upper = upper
33
        super().__init__()
34 35 36 37 38 39 40

    def __call__(self, value):
        return self._lower <= value <= self._upper


class Positive(Constraint):
    def __call__(self, value):
41
        return value >= 0.0
42 43 44 45


class Simplex(Constraint):
    def __call__(self, value):
46 47 48
        return paddle.all(value >= 0, axis=-1) and (
            (value.sum(-1) - 1).abs() < 1e-6
        )
49 50 51 52 53


real = Real()
positive = Positive()
simplex = Simplex()