Skip to content

Commit

Permalink
Add missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshioka1128 committed Aug 23, 2024
1 parent fe9eee4 commit ce64508
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/openqaoa-core/tests/test_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import datetime
from copy import deepcopy

from openqaoa import QAOA, RQAOA
from openqaoa import QAOA, RQAOA, FQAOA
from openqaoa.problems import NumberPartition
from openqaoa.algorithms import QAOAResult, RQAOAResult
from openqaoa.algorithms.baseworkflow import Workflow
Expand All @@ -23,6 +23,11 @@
CircuitProperties,
)
from openqaoa.algorithms.rqaoa.rqaoa_workflow_properties import RqaoaParameters
from openqaoa.algorithms.fqaoa.fqaoa_utils import (
get_analytical_fermi_orbitals,
get_statevector,
generate_random_portfolio_data,
)
from openqaoa.backends import create_device, DeviceLocal
from openqaoa.backends.cost_function import cost_function

Expand All @@ -39,7 +44,7 @@
)
from openqaoa.backends import QAOAvectorizedBackendSimulator
from openqaoa.backends.basebackend import QAOABaseBackendStatevector
from openqaoa.problems import MinimumVertexCover, QUBO, MaximumCut
from openqaoa.problems import MinimumVertexCover, PortfolioOptimization, QUBO, MaximumCut
from openqaoa.optimizers.qaoa_optimizer import available_optimizers
from openqaoa.optimizers.training_vqa import (
ScipyOptimizer,
Expand Down

0 comments on commit ce64508

Please sign in to comment.