10 lines
141 B
Python
10 lines
141 B
Python
|
# -*- coding: UTF-8 no BOM -*-
|
||
|
|
||
|
|
||
|
from .geometry import Geometry
|
||
|
|
||
|
class Spectral(Geometry):
|
||
|
|
||
|
def __init__(self):
|
||
|
self.solver='Spectral'
|