Skip to content

Commit

Permalink
Merge pull request #6 from FahrJo/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
FahrJo authored Mar 31, 2023
2 parents e273d22 + 843752a commit 8c45a2b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,21 @@ After activation of this extension, on each saving of a C file, a formal verific

## Requirements

Connection to a public server running Ultimate Automizer, e.g. https://monteverdi.informatik.uni-freiburg.de/
Connection to a public server running Ultimate Automizer, e.g. <https://monteverdi.informatik.uni-freiburg.de/>.

Alternatively a container providing the API can be executed inside Docker.

<!-- ## Extension Settings
Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
For example:
## Extension Settings

This extension contributes the following settings:

* `myExtension.enable`: Enable/disable this extension.
* `myExtension.thing`: Set to `blah` to do something.
* `ultimate.mode`: `"REST API"`/`"stdout"` to specify if Ultimate will be accessed by accessing a REST API or the output of the command line.
* `ultimate.url`: Base URL of the REST API endpoint.
* `ultimate.executablePath`: Path to the executable of Ultimate is NOT accessed by the REST API. This can either be Ultimate itself or the [wrapper script for MacOS](https://github.com/FahrJo/ultimate-automizer-docker).
* `ultimate.settingsPath`: Path to the settings (*.epl) of Ultimate is not accessed by the REST API.
* `ultimate.toolchainPath`: Path to the toolchain (*.xml) of Ultimate is NOT accessed by the REST API.

## Known Issues
<!--## Known Issues
Calling out known issues can help limit users opening duplicate issues against your extension.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@
"ultimate.settingsPath": {
"type": "string",
"default": "",
"description": "Path to the settings of Ultimate is not accessed by the REST API."
"description": "Path to the settings (*.epl) of Ultimate is not accessed by the REST API."
},
"ultimate.toolchainPath": {
"type": "string",
"default": "",
"description": "Path to the toolchain of Ultimate is not accessed by the REST API."
"description": "Path to the toolchain (*.xml) of Ultimate is not accessed by the REST API."
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/ultimateByLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class UltimateByLog extends UltimateBase {
// prettier-ignore
let commandArgs = [
'-s', this.settingsFilePath.fsPath,
'-t', this.toolchainFilePath.fsPath,
'-tc', this.toolchainFilePath.fsPath,
'-i', document.uri.fsPath,
];
let ultimateOutput = '';
Expand Down

0 comments on commit 8c45a2b

Please sign in to comment.