Skip to content
Snippets Groups Projects
RandomNode.py 335 B
Newer Older
Lukas Kettenbach's avatar
Lukas Kettenbach committed
# -*- coding: utf-8 -*-

from core.Node import Node
from reasoning.density import Density


class RandomNode(Node):
    '''TODO: write doc'''

    cpd = Density()

    def __init__(self, name):
        super(RandomNode, self).__init__(name)

    def is_valid(self):
        raise Exception("Called an unimplemented function")