This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "type": "object", | |
| "title": "Project", | |
| "properties": { | |
| "assemblies": { | |
| "type": "array", | |
| "items": { | |
| "allOf": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const getResidualVariables = log => { | |
| if (!log) { | |
| return null; | |
| } | |
| // Only look for the residual variables in the last 1000 characters | |
| let iterable = log.slice(-1000, -1).matchAll("Solving for ([A-Za-z]+), Initial residual = "); | |
| // Create a set to make sure we don't get duplicates | |
| let allVars = new Set(); |