Coverage for picos/uncertain.py: 100.00%

5 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-03-26 07:46 +0000

1# ------------------------------------------------------------------------------ 

2# Copyright (C) 2020 Maximilian Stahlberg 

3# 

4# This file is part of PICOS. 

5# 

6# PICOS is free software: you can redistribute it and/or modify it under the 

7# terms of the GNU General Public License as published by the Free Software 

8# Foundation, either version 3 of the License, or (at your option) any later 

9# version. 

10# 

11# PICOS is distributed in the hope that it will be useful, but WITHOUT ANY 

12# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 

13# A PARTICULAR PURPOSE. See the GNU General Public License for more details. 

14# 

15# You should have received a copy of the GNU General Public License along with 

16# this program. If not, see <http://www.gnu.org/licenses/>. 

17# ------------------------------------------------------------------------------ 

18 

19"""Tools for handling uncertain data.""" 

20 

21from .apidoc import api_start, api_end 

22 

23 

24_API_START = api_start(globals()) 

25# ------------------------------- 

26 

27from .expressions.uncertain import (IntractableWorstCase, # noqa 

28 ConicPerturbationSet, 

29 MomentAmbiguitySet, 

30 ScenarioPerturbationSet, 

31 UnitBallPerturbationSet, 

32 WassersteinAmbiguitySet) 

33 

34# -------------------------------------- 

35__all__ = api_end(_API_START, globals())