Skip to content

Commit e4d2304

Browse files
committed
nitpicks
1 parent 3f3248e commit e4d2304

File tree

4 files changed

+1
-26
lines changed

4 files changed

+1
-26
lines changed

.vscode/launch.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,6 @@
1010
"args": [
1111
]
1212
},
13-
{
14-
"name": "Launch detcheck",
15-
"type": "codelldb",
16-
"request": "launch",
17-
"cwd": "${workspaceFolder}/Debug",
18-
"program": "${workspaceFolder}/Debug/detcheck",
19-
"args": [
20-
"-f", "/Users/agj/Git/hmk/safecontrucks/Safecon3",
21-
"-i", ".*CHANGELOG.*",
22-
"-n", "Main.CS(15)"
23-
]
24-
},
2513
{
2614
"name": "Launch Verifier",
2715
"type": "codelldb",

src/cli/detcheck/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ if(TARGET default_plugins)
2222
add_dependencies(${PROJECT_NAME} default_plugins)
2323
endif()
2424
install(TARGETS ${PROJECT_NAME})
25-
#install(FILES man/simulator.1 DESTINATION /man/man1)
25+

test/tta/tta_tests.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@
2222
#include <catch2/catch_test_macros.hpp>
2323
#include <utility>
2424

25-
SCENARIO("djwkadjw", "[aa]") {
26-
expr::symbol_table_t ex_symbols{};
27-
aaltitoad::expression_driver i{ex_symbols};
28-
auto r = i.parse("x:=0_ms");
29-
std::cout << r.declarations << std::endl;
30-
}
31-
3225
SCENARIO("constructing networks of TTAs", "[ntta_t-construction]") {
3326
struct dummy_tocker : public aaltitoad::tocker_t {
3427
[[nodiscard]] auto tock(const aaltitoad::ntta_t& state) -> std::vector<expr::symbol_table_t> override {

test/verification/forward_reachability_tests.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ SCENARIO("basic reachability", "[frs]") {
3939
.build_with_interesting_tocker();
4040
GIVEN("a simple reachability query 'can x reach zero?'") {
4141
auto query = aaltitoad::ctl_interpreter{n.symbols, n.external_symbols}.compile("E F x == 0");
42-
// THEN("query 'E F x == 0' is a searchable query") {
43-
// aaltitoad::is_query_searchable(query);
44-
// }
45-
// THEN("query 'E F x == 0' is not a trivial query") {
46-
// aaltitoad::is_query_trivial(query);
47-
// }
4842
WHEN("searching through the state-space with forward reachability search") {
4943
aaltitoad::forward_reachability_searcher frs{};
5044
auto results = frs.is_reachable(n, query);

0 commit comments

Comments
 (0)