Skip to content

Parallelize Verification and FSM#66

Open
rcosta358 wants to merge 2 commits intomainfrom
parallelize-verification-and-fsm
Open

Parallelize Verification and FSM#66
rcosta358 wants to merge 2 commits intomainfrom
parallelize-verification-and-fsm

Conversation

@rcosta358
Copy link
Copy Markdown
Collaborator

@rcosta358 rcosta358 commented Mar 23, 2026

This PR prevents the slow verification in large projects from blocking FSM updates by executing the verification and the state machine parsing in dedicated single-thread executors in the language server.

@rcosta358 rcosta358 self-assigned this Mar 23, 2026
@rcosta358 rcosta358 added the enhancement New feature or request label Mar 23, 2026
Copy link
Copy Markdown
Collaborator

@CatarinaGamboa CatarinaGamboa left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool! This is a nice bit to add to your thesis - how you've handled complex projects

const allVars = context.allVars;
const ghosts = context.ghosts.filter(ghost => ghost.file === currentFile);
const aliases = context.aliases;
const allVars = context.allVars || [];
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool didnt know this was possible

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants