-
Notifications
You must be signed in to change notification settings - Fork 6
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
May Improvements #147
May Improvements #147
Conversation
phschaad
commented
May 27, 2024
•
edited
Loading
edited
- Add node separation to the settings
- Improve settings menu
- Improve rendering of edge summarization for two subsequent scope nodes
- Minor formatting / typing fixes
- Change panning bounds to minimap viewport instead of graph bounding box
@@ -282,13 +288,12 @@ export class AvgParallelismOverlay extends GenericSdfgOverlay { | |||
type: string, | |||
_ev: Event, | |||
_mousepos: Point2D, | |||
_elements: SDFGElement[], | |||
foreground_elem: SDFGElement, | |||
_elements: Record<SDFGElementGroup, GraphElementInfo[]>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is a record?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A common supertype for dictionaries, (hash-)maps, etc. - in this case it's used to make a 'typed' dictionary where keys cannot be arbitrary strings, but of a specific set of strings (indicated by the type 'SDFGElementGroup')
@@ -2183,8 +2236,8 @@ export class Tasklet extends SDFGNode { | |||
|
|||
public text_for_find(): string { | |||
// Include code when searching | |||
const code = this.attributes().code.string_data; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:) oops