We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe.
When doing repr(cell.surfaces) (in jupyter) the output is not very useful:
repr(cell.surfaces)
>>> tc.surfaces Numbered_object_collection: obj_class: <class 'montepy.surfaces.surface.Surface'>, problem: None Objects: [SURFACE: 1712, RCC, periodic surface: None, transform: None, constants: [0.0, 0.0, 115.25759, 0.0, 0.0, 10.16, 1.142]] Number cache: {1712: SURFACE: 1712, RCC, periodic surface: None, transform: None, constants: [0.0, 0.0, 115.25759, 0.0, 0.0, 10.16, 1.142]}
This is too much information. The number cache is no longer really necessary for debugging because of how well I made this object ;).
Describe the solution you'd like
Rather in this case I think the more important thing is to just just the repr of the child objects.
repr
Suggestion:
>>> tc.surfaces Surfaces: problem: None [SURFACE: 1712, RCC, periodic surface: None, transform: None, constants: [0.0, 0.0, 115.25759, 0.0, 0.0, 10.16, 1.142]]
Describe alternatives you've considered
Do nothing.
Additional context This was 1.0.0a1.dev#
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
When doing
repr(cell.surfaces)
(in jupyter) the output is not very useful:This is too much information. The number cache is no longer really necessary for debugging because of how well I made this object ;).
Describe the solution you'd like
Rather in this case I think the more important thing is to just just the
repr
of the child objects.Suggestion:
Describe alternatives you've considered
Do nothing.
Additional context
This was 1.0.0a1.dev#
The text was updated successfully, but these errors were encountered: