Browse Source

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

v0.2.x
jajupmochi 4 years ago
parent
commit
47951de049
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,7 +14,6 @@ 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

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


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




Loading…
Cancel
Save