34 lines
648 B
Python
34 lines
648 B
Python
|
"""
|
||
|
Building module
|
||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||
|
Copyright © 2020 Project Author Sanam Dabirian sanam.dabirian@mail.concordia.ca
|
||
|
"""
|
||
|
|
||
|
|
||
|
class schedule_value:
|
||
|
"""
|
||
|
Schedule Values class
|
||
|
"""
|
||
|
|
||
|
def __init__(self, hour, probability):
|
||
|
"""
|
||
|
Constructor
|
||
|
"""
|
||
|
self._hour = hour
|
||
|
self._probability = probability
|
||
|
|
||
|
@property
|
||
|
def hour(self):
|
||
|
"""
|
||
|
Get hours
|
||
|
:return: hour of a day
|
||
|
"""
|
||
|
return self._hour
|
||
|
|
||
|
@property
|
||
|
def probability(self):
|
||
|
"""
|
||
|
Get probabilities of occupants' presence
|
||
|
:return: occupants' presence probabilities
|
||
|
"""
|
||
|
return self._probability
|