-
Notifications
You must be signed in to change notification settings - Fork 225
Forward routing gRPC settings and map node name strings to ints #1837
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1510,6 +1510,16 @@ def get_time_limit(self): | |
| """ | ||
| return super().get_time_limit() | ||
|
|
||
| @catch_cuopt_exception | ||
| def get_verbose_mode(self): | ||
| """Return whether verbose solver output is enabled.""" | ||
| return super().get_verbose_mode() | ||
|
Comment on lines
+1514
to
+1516
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Add return annotations and complete API documentation. Add As per coding guidelines, “Require type hints on new public Python functions and classes” and “Document new public Python APIs with meaningful docstring content covering parameters, returns, and raises.” As per path instructions, new public APIs require “Type hints” and docstring content for “returns, raises.” Also applies to: 1519-1521 🤖 Prompt for AI AgentsSources: Coding guidelines, Path instructions |
||
|
|
||
| @catch_cuopt_exception | ||
| def get_error_logging_mode(self): | ||
| """Return whether constraint error logging is enabled.""" | ||
| return super().get_error_logging_mode() | ||
|
|
||
| @catch_cuopt_exception | ||
| def get_best_results_file_path(self): | ||
| """ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.