Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modularized ESBMC-AI #157

Merged
merged 19 commits into from
Jan 1, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update comment
  • Loading branch information
Yiannis128 committed Dec 9, 2024
commit 181cc58611c5dca1c60822d79d8f00c1c4d2bfb5
1 change: 1 addition & 0 deletions esbmc_ai/addon_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ def _init_addon_modules(self, mods: list[str]) -> list:
attr_class = getattr(m, attr_name)
# Check if valid addon type and import
if issubclass(attr_class, allowed_types):
# Initialize class.
result.append(attr_class())
printv(f"Loading addon: {attr_name}")
except ModuleNotFoundError as e:
Expand Down
Loading