7 lines
102 B
Python
7 lines
102 B
Python
|
from .solver import Solver
|
||
|
|
||
|
class Spectral(Solver):
|
||
|
|
||
|
def __init__(self):
|
||
|
self.solver='Spectral'
|