Source code for beetroots.inversion.results.abstract_results

import abc


[docs] class ResultsExtractor(abc.ABC): r"""extractor of the results of an inversion"""
[docs] @abc.abstractmethod def main(self, **kwargs): pass