This file contains 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
script { | |
def userInput = "start" | |
while (userInput != ""){ | |
userInput = input( | |
message: 'Please enter the command to run:', | |
parameters: [ | |
string(name: 'COMMAND', defaultValue: '', description: 'Command to execute') | |
] | |
) | |
// Execute the user-provided command |
This file contains 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
#!/usr/bin/python3 | |
import math | |
import z3 | |
import struct | |
import sys | |
import numpy | |
from decimal import Decimal | |
from z3 import Or |
This file contains 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
plugins { | |
id 'application' | |
id 'org.openjfx.javafxplugin' version '0.0.8' | |
} | |
repositories { | |
mavenCentral() | |
} | |
int javafxVersion=11 | |
String javafxPlatform ="undefined" |