EmbASP-Python
asp_data_collection.py
1 from abc import ABCMeta, abstractmethod
2 
3 
4 class ASPDataCollection(object):
5  __metaclass__ = ABCMeta
6 
7  @abstractmethod
8  def add_answer_set(self):
9  pass
10 
11  @abstractmethod
12  def store_atom(self, atom):
13  pass
14 
15  @abstractmethod
16  def store_cost(self, level, weight):
17  pass
parsers.asp.asp_data_collection.ASPDataCollection
Definition: asp_data_collection.py:4