Browse Source

[Update] Move the import of control out of the __init__().

v0.2.x
jajupmochi 4 years ago
parent
commit
71df9f591f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      gklearn/kernels/sylvester_equation.py

+ 1
- 1
gklearn/kernels/sylvester_equation.py View File

@@ -14,6 +14,7 @@ import sys
from gklearn.utils import get_iters
import numpy as np
import networkx as nx
from control import dlyap
from gklearn.utils.parallel import parallel_gm, parallel_me
from gklearn.kernels import RandomWalkMeta

@@ -22,7 +23,6 @@ class SylvesterEquation(RandomWalkMeta):


def __init__(self, **kwargs):
from control import dlyap
super().__init__(**kwargs)




Loading…
Cancel
Save