├── .arcconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── SConstruct ├── cpp ├── BUILD.md ├── SConscript ├── baseline │ ├── SConscript │ ├── common │ │ ├── SConscript │ │ ├── clearcache-handler.cc │ │ ├── clearcache-handler.h │ │ ├── clearcache-handler_test.cc │ │ ├── common-mysql-defs.h │ │ ├── extensible-ready-handler-fixture.cc │ │ ├── extensible-ready-handler-fixture.h │ │ ├── extensible-ready-handler.cc │ │ ├── extensible-ready-handler.h │ │ ├── extensible-ready-handler_test.cc │ │ ├── mysql-connection.cc │ │ ├── mysql-connection.h │ │ ├── numbered-command-extension-fixture.h │ │ ├── numbered-command-receiver-fixture.h │ │ ├── numbered-command-receiver.cc │ │ ├── numbered-command-receiver.h │ │ ├── numbered-command-receiver_test.cc │ │ ├── shutdown-handler.cc │ │ ├── shutdown-handler.h │ │ ├── stemmer.cc │ │ ├── stemmer.h │ │ └── stemmer_test.cc │ ├── mysql-client │ │ ├── SConscript │ │ ├── mysql-main.cc │ │ ├── query-handler.cc │ │ ├── query-handler.h │ │ └── query-handler_test.cc │ ├── mysql-server │ │ ├── SConscript │ │ ├── alarm-words-default.h │ │ ├── alarm-words.cc │ │ ├── alarm-words.h │ │ ├── alarm-words_test.cc │ │ ├── bind-manager.cc │ │ ├── bind-manager.h │ │ ├── data-inserter.cc │ │ ├── data-inserter.h │ │ ├── delete-handler.cc │ │ ├── delete-handler.h │ │ ├── directory-importer.cc │ │ ├── index-table-insert-builder.cc │ │ ├── index-table-insert-builder.h │ │ ├── index-table-insert-builder_test.cc │ │ ├── insert-handler.cc │ │ ├── insert-handler.h │ │ ├── insert-handler_test.cc │ │ ├── m_of_n.cc │ │ ├── notes-parser.cc │ │ ├── notes-parser.h │ │ ├── notes-parser_test.cc │ │ ├── server-main.cc │ │ ├── update-handler.cc │ │ ├── update-handler.h │ │ ├── update-handler_test.cc │ │ ├── util.cc │ │ ├── util.h │ │ ├── verify-handler.cc │ │ └── verify-handler.h │ └── ta2 │ │ ├── SConscript │ │ ├── common │ │ ├── SConscript │ │ ├── baseline.cc │ │ ├── baseline.h │ │ ├── circuit-parser.h │ │ ├── flex-def.h │ │ ├── lemon-def.h │ │ └── lex-global.h │ │ ├── ibm │ │ ├── SConscript │ │ ├── add-const.h │ │ ├── add.h │ │ ├── binary-gate.cc │ │ ├── binary-gate.h │ │ ├── circuit.cc │ │ ├── circuit.h │ │ ├── gate.h │ │ ├── ibm-baseline-main.cc │ │ ├── ibm-baseline.cc │ │ ├── ibm-baseline.h │ │ ├── ibm-circuit-gates.h │ │ ├── ibm-circuit-parser.cc │ │ ├── ibm-circuit-parser.h │ │ ├── ibm-circuit-parser_test.cc │ │ ├── ibm-def.h │ │ ├── ibm-gate_test.cc │ │ ├── ibm-parser.y │ │ ├── ibm-scanner.l │ │ ├── mul-const.h │ │ ├── mul.h │ │ ├── rotate.cc │ │ ├── rotate.h │ │ ├── select.h │ │ ├── unary-gate.cc │ │ ├── unary-gate.h │ │ └── wire.h │ │ └── stealth │ │ ├── SConscript │ │ ├── and.cc │ │ ├── and.h │ │ ├── circuit.cc │ │ ├── circuit.h │ │ ├── gate.h │ │ ├── multi-input-gate.cc │ │ ├── multi-input-gate.h │ │ ├── not.h │ │ ├── or.cc │ │ ├── or.h │ │ ├── stealth-baseline-main.cc │ │ ├── stealth-baseline.cc │ │ ├── stealth-baseline.h │ │ ├── stealth-circuit-gates.h │ │ ├── stealth-circuit-parser.cc │ │ ├── stealth-circuit-parser.h │ │ ├── stealth-circuit-parser_test.cc │ │ ├── stealth-def.h │ │ ├── stealth-gate_test.cc │ │ ├── stealth-parser.y │ │ ├── stealth-parser_test.cc │ │ ├── stealth-scanner.l │ │ ├── wire.h │ │ ├── xor.cc │ │ └── xor.h ├── common │ ├── SConscript │ ├── aggregating-future.h │ ├── aggregating-future_test.cc │ ├── bpbuffer-strand.cc │ ├── bpbuffer-strand.h │ ├── buffer-pool.cc │ ├── buffer-pool.h │ ├── buffer-pool_test.cc │ ├── check.h │ ├── check_test.cc │ ├── conditions.h │ ├── event-loop-base.cc │ ├── event-loop-base.h │ ├── event-loop.cc │ ├── event-loop.h │ ├── event-loop_test.cc │ ├── example-network-client.cc │ ├── example-network-server.cc │ ├── file-pipe.cc │ ├── file-pipe.h │ ├── fixed-size-memory-pool.h │ ├── future-waiter.h │ ├── future-waiter_test.cc │ ├── future.h │ ├── future_test.cc │ ├── general-logger.cc │ ├── general-logger.h │ ├── general-logger_test.cc │ ├── hash-aggregator.cc │ ├── hash-aggregator.h │ ├── host-port.cc │ ├── host-port.h │ ├── knot-impl │ │ ├── SConscript │ │ ├── knot-node-deque.cc │ │ ├── knot-node-deque.h │ │ ├── knot-node-deque_test.cc │ │ ├── knot-node.h │ │ ├── strand.cc │ │ └── strand.h │ ├── knot-iterator.cc │ ├── knot-iterator.h │ ├── knot-iterator_test.cc │ ├── knot.cc │ ├── knot.h │ ├── knot_test.cc │ ├── line-raw-data.cc │ ├── line-raw-data.h │ ├── line-raw-data_test.cc │ ├── line-raw-parser.cc │ ├── line-raw-parser.h │ ├── line-raw-parser_test.cc │ ├── line-raw-to-output-handler.cc │ ├── line-raw-to-output-handler.h │ ├── line-raw-to-output-handler_test.cc │ ├── logging.cc │ ├── logging.h │ ├── logging_test.cc │ ├── network-client.cc │ ├── network-client.h │ ├── network-connection.cc │ ├── network-connection.h │ ├── network-server.cc │ ├── network-server.h │ ├── networking_test.cc │ ├── object_threads.h │ ├── object_threads_test.cc │ ├── output-handler.cc │ ├── output-handler.h │ ├── periodic-real-time-logger.cc │ ├── periodic-real-time-logger.h │ ├── periodic-real-time-logger_test.cc │ ├── protocol-extension-manager.cc │ ├── protocol-extension-manager.h │ ├── protocol-extension-manager_test.cc │ ├── read-event-loop.cc │ ├── read-event-loop.h │ ├── safe-file-stream.h │ ├── schema.cc │ ├── schema.h │ ├── schema_test.cc │ ├── statics.cc │ ├── statics.h │ ├── statics │ │ ├── SConscript │ │ ├── ordered-function-registry.cc │ │ ├── ordered-function-registry.h │ │ └── ordered-function-registry_test.cc │ ├── string-algo.cc │ ├── string-algo.h │ ├── string-algo_test.cc │ ├── ta1-constants.h │ ├── test-init.h │ ├── test-util.cc │ ├── test-util.h │ ├── timer.cc │ ├── timer.h │ ├── timer_test.cc │ ├── topological-iterator.h │ ├── topological-iterator_test.cc │ ├── types.h │ ├── util.cc │ ├── util.h │ ├── util_test.cc │ ├── write-event-loop.cc │ └── write-event-loop.h ├── data-generation │ ├── SConscript │ ├── fingerprint-generator.cpp │ ├── fingerprint-generator.h │ ├── fingerprint_test.cpp │ ├── generator.cpp │ └── setup.py ├── harness-testing │ ├── README │ ├── SConscript │ ├── asyncproc.py │ ├── c-style-throughput.cc │ ├── dummy-ta3-client.cc │ ├── dummy-ta3-server.cc │ ├── event-loop-throughput.cc │ ├── plot-results.py │ ├── run_tests.py │ ├── silly-async-throughput.py │ ├── silly-client.cc │ ├── silly-throughput.cc │ └── silly-throughput.py ├── scons_cpp_helper.py ├── test-harness │ ├── SConscript │ ├── common │ │ ├── SConscript │ │ ├── agg-numbered-command-fixture-with-event-monitor.h │ │ ├── agg-numbered-command-fixture.h │ │ ├── agg-numbered-command-sender.cc │ │ ├── agg-numbered-command-sender.h │ │ ├── agg-numbered-command-sender_test.cc │ │ ├── call-remote-script.cc │ │ ├── call-remote-script.h │ │ ├── delay-generators.h │ │ ├── delay-generators_test.cc │ │ ├── event-message-monitor-fixture.cc │ │ ├── event-message-monitor-fixture.h │ │ ├── event-message-monitor.cc │ │ ├── event-message-monitor.h │ │ ├── event-message-monitor_test.cc │ │ ├── generic-log-message-formats.h │ │ ├── generic-numbered-command.cc │ │ ├── generic-numbered-command.h │ │ ├── log-file-generator.cc │ │ ├── log-file-generator.h │ │ ├── multi-numbered-command-fixture.h │ │ ├── multi-numbered-command-sender.cc │ │ ├── multi-numbered-command-sender.h │ │ ├── multi-numbered-command-sender_test.cc │ │ ├── network-protocol-stack.cc │ │ ├── network-protocol-stack.h │ │ ├── numbered-command-counter.cc │ │ ├── numbered-command-counter.h │ │ ├── numbered-command-counter_test.cc │ │ ├── numbered-command-fixture.h │ │ ├── numbered-command-sender-base.cc │ │ ├── numbered-command-sender-base.h │ │ ├── numbered-command-sender.cc │ │ ├── numbered-command-sender.h │ │ ├── numbered-command-sender_test.cc │ │ ├── ready-monitor-fixture.cc │ │ ├── ready-monitor-fixture.h │ │ ├── ready-monitor.cc │ │ ├── ready-monitor.h │ │ ├── ready-monitor_test.cc │ │ ├── root-mode-command-fixture.h │ │ ├── root-mode-command-sender.cc │ │ ├── root-mode-command-sender.h │ │ ├── root-mode-commands.cc │ │ ├── root-mode-commands.h │ │ ├── root-mode-commands_test.cc │ │ ├── root-mode-local-script.cc │ │ ├── root-mode-local-script.h │ │ ├── run-script-over-network_test.cc │ │ ├── sample-sut-protocol-stack.h │ │ ├── script-manager.cc │ │ ├── script-manager.h │ │ ├── scripts-from-file.cc │ │ ├── scripts-from-file.h │ │ ├── scripts-from-file_test.cc │ │ ├── spawn-sut.cc │ │ ├── spawn-sut.h │ │ ├── spawn-sut_test.cc │ │ ├── sut-protocol-stack.cc │ │ ├── sut-protocol-stack.h │ │ ├── sut-running-monitor.h │ │ ├── test-script.cc │ │ ├── test-script.h │ │ ├── th-run-script-command.cc │ │ ├── th-run-script-command.h │ │ ├── th-run-script-handler.cc │ │ └── th-run-script-handler.h │ ├── ta1 │ │ ├── SConscript │ │ ├── client-harness.cc │ │ ├── client-sut-protocol-stack.cc │ │ ├── client-sut-protocol-stack.h │ │ ├── delete-command.cc │ │ ├── delete-command.h │ │ ├── delete-command_test.cc │ │ ├── insert-atomicity-script.cc │ │ ├── insert-atomicity-script.h │ │ ├── insert-command.cc │ │ ├── insert-command.h │ │ ├── insert-command_test.cc │ │ ├── master-harness-network-listener.cc │ │ ├── master-harness-network-listener.h │ │ ├── query-command.cc │ │ ├── query-command.h │ │ ├── query-command_test.cc │ │ ├── row-hash-aggregator.cc │ │ ├── row-hash-aggregator.h │ │ ├── row-hash-aggregator_test.cc │ │ ├── scripts │ │ │ ├── SConscript │ │ │ ├── modify-and-query-script.cc │ │ │ ├── modify-and-query-script.h │ │ │ ├── modify-argument-script.cc │ │ │ ├── modify-argument-script.h │ │ │ ├── query-list-script.cc │ │ │ ├── query-list-script.h │ │ │ ├── root-mode-master-script.cc │ │ │ ├── root-mode-master-script.h │ │ │ ├── setup-client-harness-scripts.cc │ │ │ ├── setup-client-harness-scripts.h │ │ │ ├── unloaded-modify-argument-script.cc │ │ │ ├── unloaded-modify-argument-script.h │ │ │ ├── unloaded-query-latency-script.cc │ │ │ ├── unloaded-query-latency-script.h │ │ │ ├── unloaded-query-latency-script_test.cc │ │ │ ├── variable-delay-modify-argument-script.cc │ │ │ ├── variable-delay-modify-argument-script.h │ │ │ ├── variable-delay-query-script.cc │ │ │ ├── variable-delay-query-script.h │ │ │ ├── verify-script.cc │ │ │ └── verify-script.h │ │ ├── server-harness.cc │ │ ├── server-sut-protocol-stack.cc │ │ ├── server-sut-protocol-stack.h │ │ ├── slave-network-stack.cc │ │ ├── slave-network-stack.h │ │ ├── ta1-log-message-formats.h │ │ ├── ta1-test-harness.md │ │ ├── update-command.cc │ │ ├── update-command.h │ │ ├── update-command_test.cc │ │ ├── verify-command.cc │ │ └── verify-command.h │ ├── ta2 │ │ ├── SConscript │ │ ├── circuit-message-handler.cc │ │ ├── circuit-message-handler.h │ │ ├── circuit-message-handler_test.cc │ │ ├── dummy-client.cc │ │ ├── input-message-handler.cc │ │ ├── input-message-handler.h │ │ ├── key-message-handler.cc │ │ ├── key-message-handler.h │ │ ├── key-message-handler_test.cc │ │ ├── message-handler.h │ │ ├── stream-util.cc │ │ ├── stream-util.h │ │ ├── stream-util_test.cc │ │ ├── test-harness-main.cc │ │ ├── test-script.cc │ │ └── test-script.h │ └── ta3 │ │ ├── SConscript │ │ ├── client-sut-protocol-stack.cc │ │ ├── client-sut-protocol-stack.h │ │ ├── client-sut-protocol-stack_test.cc │ │ ├── commands │ │ ├── SConscript │ │ ├── publish-command.cc │ │ ├── publish-command.h │ │ ├── publish-command_test.cc │ │ ├── subscribe-command.cc │ │ ├── subscribe-command.h │ │ ├── subscribe-command_test.cc │ │ ├── unsubscribe-command.cc │ │ ├── unsubscribe-command.h │ │ └── unsubscribe-command_test.cc │ │ ├── disconnection-received-handler.cc │ │ ├── disconnection-received-handler.h │ │ ├── event-message-fixture.cc │ │ ├── event-message-fixture.h │ │ ├── fields │ │ ├── SConscript │ │ ├── date-field.cc │ │ ├── date-field.h │ │ ├── date-field_test.cc │ │ ├── equi-probable-closed-set-field.cc │ │ ├── equi-probable-closed-set-field.h │ │ ├── equi-probable-closed-set-field_test.cc │ │ ├── field-base.h │ │ ├── field-set.cc │ │ ├── field-set.h │ │ ├── field-set_test.cc │ │ ├── integer-field.cc │ │ ├── integer-field.h │ │ ├── integer-field_test.cc │ │ ├── testing-field-set.cc │ │ └── testing-field-set.h │ │ ├── harness-info-request-handler.cc │ │ ├── harness-info-request-handler.h │ │ ├── harness-info-request-handler_test.cc │ │ ├── master-harness-network-listener.cc │ │ ├── master-harness-network-listener.h │ │ ├── master-harness-network-listener_test.cc │ │ ├── master-harness.cc │ │ ├── multi-client-sut-protocol-stack.cc │ │ ├── multi-client-sut-protocol-stack.h │ │ ├── multi-client-sut-protocol-stack_test.cc │ │ ├── pub-sub-gen │ │ ├── SConscript │ │ ├── low-match-rate-pub-sub-gen.cc │ │ ├── low-match-rate-pub-sub-gen.h │ │ ├── low-match-rate-pub-sub-gen_test.cc │ │ ├── num-predicate-generators.cc │ │ ├── num-predicate-generators.h │ │ ├── test-generator.cc │ │ └── test-generator.md │ │ ├── publication-received-handler.cc │ │ ├── publication-received-handler.h │ │ ├── publication-received-handler_test.cc │ │ ├── scripts │ │ ├── SConscript │ │ ├── call-remote-script.cc │ │ ├── call-remote-script.h │ │ ├── multi-wait-for-final-publication-script.cc │ │ ├── multi-wait-for-final-publication-script.h │ │ ├── publish-and-modify-subscriptions-script.cc │ │ ├── publish-and-modify-subscriptions-script.h │ │ ├── publish-script.cc │ │ ├── publish-script.h │ │ ├── publish-script_test.cc │ │ ├── root-mode-master-script.cc │ │ ├── root-mode-master-script.h │ │ ├── root-mode-multi-client-local-script.cc │ │ ├── root-mode-multi-client-local-script.h │ │ ├── setup-master-harness-scripts.h │ │ ├── setup-master-harness-scripts_test.cc │ │ ├── setup-slave-harness-scripts.h │ │ ├── setup-slave-harness-scripts_test.cc │ │ ├── subscribe-script.cc │ │ ├── subscribe-script.h │ │ ├── subscribe-script_test.cc │ │ ├── unsubscribe-script.cc │ │ ├── unsubscribe-script.h │ │ ├── unsubscribe-script_test.cc │ │ ├── update-network-map-script.cc │ │ ├── update-network-map-script.h │ │ ├── wait-for-final-publication-script.cc │ │ ├── wait-for-final-publication-script.h │ │ ├── wait-script.cc │ │ └── wait-script.h │ │ ├── server-sut-protocol-stack.cc │ │ ├── server-sut-protocol-stack.h │ │ ├── server-sut-protocol-stack_test.cc │ │ ├── slave-harness-network-stack.cc │ │ ├── slave-harness-network-stack.h │ │ ├── slave-harness-network-stack_test.cc │ │ ├── slave-harness.cc │ │ ├── ta3-log-message-formats.h │ │ └── ta3-test-harness.md └── third-party │ ├── README │ ├── SConscript │ ├── stemmer.c │ └── stemmer.h ├── docs ├── ACKNOWLEDGEMENTS.md ├── BUILD.md ├── CONTRIBUTE.md ├── INSTALL.md ├── doc-gen │ ├── Doxyfile │ ├── epydoc_config │ ├── makesourcedocs.sh │ └── projectavatar.png ├── software_doc_template.md ├── tool-docs │ ├── perf_monitoring.md │ ├── pre_test_generation.md │ ├── remote_runner.md │ ├── ta1-results-database.md │ ├── ta1-test-harness.md │ ├── ta2-results-database.md │ ├── ta3-baseline.md │ ├── ta3-test-generator-algorithms.pdf │ ├── ta3-test-generator.md │ └── ta3-test-harness.md └── user-manuals │ ├── CIRCUIT_GENERATION.md │ ├── CIRCUIT_TEST_EXECUTION.md │ ├── DB_GENERATION.md │ ├── DB_TEST_EXECUTION.md │ └── REPORT_GENERATION.md ├── java ├── SConscript ├── checkstyle │ ├── spar.xml │ └── suppressions.xml ├── jars │ ├── PublishingBroker.mf │ ├── PublishingServer.mf │ ├── SubscribingClient.mf │ ├── ThirdPartyBroker.mf │ └── third_party │ │ ├── activemq │ │ └── activemq-all-5.5.1.jar │ │ ├── checkstyle │ │ └── checkstyle-5.4.jar │ │ ├── jewelcli │ │ └── jewelcli-0.7.6.jar │ │ ├── junit │ │ └── junit-4.10.jar │ │ ├── opencsv │ │ └── opencsv-2.3.jar │ │ └── slf4j │ │ ├── slf4j-api-1.5.11.jar │ │ ├── slf4j-jdk14-1.5.11.jar │ │ └── slf4j-simple-1.5.11.jar └── src │ ├── SConscript │ └── edu │ └── mit │ └── ll │ └── spar │ ├── common │ ├── ApproxStreamingQuantile.java │ ├── ConcurrentBufferedWriter.java │ ├── DelayedEOFByteArrayInputStream.java │ ├── PrimitiveUtils.java │ ├── SchemaHandler.java │ ├── SerialExecutor.java │ ├── UnitTester.java │ ├── package-info.java │ └── test │ │ ├── ApproxStreamingQuantileTest.java │ │ └── package-info.java │ ├── package-info.java │ ├── protocol │ ├── ProtocolException.java │ ├── handlers │ │ ├── BasicLineRawHandler.java │ │ ├── LineRawHandler.java │ │ ├── LineRawHandlerFactory.java │ │ ├── NumberedCommandHandler.java │ │ ├── RootModeCommandHandler.java │ │ ├── RootModeHandler.java │ │ ├── ShutdownCommandHandler.java │ │ ├── SubcommandHandler.java │ │ ├── package-info.java │ │ └── test │ │ │ ├── CountdownHandler.java │ │ │ ├── CountupHandler.java │ │ │ ├── NumberedCommandHandlerTest.java │ │ │ ├── SubcommandHandlerTest.java │ │ │ └── package-info.java │ ├── package-info.java │ └── reader │ │ ├── LineRawReader.java │ │ ├── package-info.java │ │ └── test │ │ ├── LineRawReaderBenchmarkTest.java │ │ ├── LineRawReaderTest.java │ │ ├── LineRawReaderUtils.java │ │ └── package-info.java │ └── ta3 │ ├── actors │ ├── PubSubActor.java │ ├── PublishingActor.java │ ├── PublishingBroker.java │ ├── PublishingServer.java │ ├── SubscribingActor.java │ ├── SubscribingClient.java │ ├── ThirdPartyBroker.java │ ├── package-info.java │ ├── ta3-baseline.md │ └── test │ │ ├── ActorTestUtils.java │ │ ├── PublishingBrokerTest.java │ │ ├── SubscribingClientTest.java │ │ ├── TestNetworkPublisher.java │ │ ├── TestNetworkSubscriber.java │ │ └── package-info.java │ └── handlers │ ├── ClearcacheCommandHandler.java │ ├── PublishSubcommandHandler.java │ ├── SubscribeSubcommandHandler.java │ ├── UnsubscribeSubcommandHandler.java │ ├── package-info.java │ └── test │ ├── StubbedPublishingBroker.java │ ├── StubbedSubscribingClient.java │ ├── TA3SubcommandHandlerTest.java │ └── package-info.java ├── scons_common.py ├── scripts-config ├── common │ ├── config │ │ ├── .bash_aliases │ │ ├── .bash_logout │ │ ├── .bashrc │ │ ├── .profile │ │ ├── .screenrc │ │ ├── .vimrc │ │ ├── hosts │ │ │ └── localhost_only.csv │ │ └── tls │ │ │ ├── cacert.pem │ │ │ ├── nist-p256.pem │ │ │ ├── server-cert.pem │ │ │ ├── server-key.key │ │ │ └── tls.README │ ├── ntp │ │ ├── README │ │ ├── ntp.client.conf │ │ ├── ntp.server.conf │ │ ├── run_client.py │ │ └── run_server.py │ ├── remote_runners │ │ ├── pkill-java │ │ │ ├── config.py │ │ │ └── pkill-jvm.sh │ │ └── sudo_bash │ │ │ ├── config.py │ │ │ └── sudo_bash.sh │ └── scripts │ │ ├── archive_test_artifacts.sh │ │ └── perf_monitors │ │ ├── cpu_monitor.sh │ │ ├── disk_monitor.sh │ │ ├── network_analyzer.sh │ │ ├── ram_by_proc.sh │ │ └── ram_monitor.sh ├── ta1 │ ├── config │ │ ├── METADATA.README │ │ ├── database_schemas │ │ │ ├── 100Bpr.csv │ │ │ ├── 100Bpr_with_hashes.csv │ │ │ ├── 100kBpr_index_all_notes.csv │ │ │ ├── 100kBpr_index_all_notes_with_hashes.csv │ │ │ ├── 100kBpr_index_notes3_notes4.csv │ │ │ ├── 100kBpr_index_notes3_notes4_with_hashes.csv │ │ │ ├── 100kBpr_index_notes4.csv │ │ │ └── 100kBpr_index_notes4_with_hashes.csv │ │ ├── event_schemas │ │ │ ├── MDB_client.csv │ │ │ └── MDB_server.csv │ │ ├── query_schemas │ │ │ ├── 100Mrows_100Bpr.csv │ │ │ ├── 100Mrows_100kBpr.csv │ │ │ ├── 100krows_100kBpr.csv │ │ │ ├── 1Brows_100Bpr.csv │ │ │ ├── 1Mrows_100Bpr.csv │ │ │ ├── 1Mrows_100kBpr.csv │ │ │ ├── 1krows_100kBpr-COL-RR.csv │ │ │ ├── 1krows_100kBpr-IBM2-RR.csv │ │ │ ├── 1krows_100kBpr.csv │ │ │ └── test.csv │ │ └── stopwords.txt │ ├── remote_runners │ │ └── exec_ta1_test │ │ │ ├── arg_parser.py │ │ │ ├── baseline_config.py │ │ │ └── muddler.py │ └── scripts │ │ ├── exec_ta1_test.sh │ │ ├── fill_ta1_db.sh │ │ ├── fix_p3_p4_quotes.py │ │ └── full_query_field_fix.sh └── ta3 │ ├── config │ ├── METADATA.README │ ├── ks_ts_generator.sh │ └── metadata_schema.csv │ ├── remote-runner-scripts │ ├── README │ ├── YYY-TCXXX_muddler.py │ ├── YYY_config.py │ ├── acs_config.py │ ├── acs_config_debug.py │ ├── arg_config.py │ ├── arg_config_debug.py │ ├── b3l_config.py │ ├── b3r_config.py │ ├── bbn_cleanup.py │ ├── bbn_config.py │ ├── bll-sample-mixed_muddler.py │ ├── bll-sample-simple_muddler.py │ ├── bll_config.py │ ├── blr-sample-mixed_muddler.py │ ├── blr-sample-simple_muddler.py │ ├── blr_config.py │ ├── test-gen-YYY-TCXXX.sh │ ├── test-gen-bll-sample-mixed.sh │ ├── test-gen-bll-sample-simple.sh │ ├── test-gen-blr-sample-mixed.sh │ ├── test-gen-blr-sample-simple.sh │ └── test-gen-blr-sample-simple.sh~HEAD │ ├── scripts │ └── ThirdPartyBroker.sh │ └── test-scripts │ ├── sample-mixed │ ├── all-modifications │ ├── all-pub-matches │ ├── all-publications │ ├── all-pubs-for-each-sub │ ├── all-subscriptions │ ├── sample-mixed │ ├── set-0-sh-0-modifications │ ├── set-0-sh-0-update-subscriptions │ ├── set-0-sh-0-verify-publications │ ├── set-1-sh-0-modifications │ ├── set-1-sh-0-update-subscriptions │ ├── set-1-sh-0-verify-publications │ ├── set-2-sh-0-modifications │ ├── set-2-sh-0-update-subscriptions │ ├── set-2-sh-0-verify-publications │ ├── set-3-sh-0-modifications │ ├── set-3-sh-0-update-subscriptions │ ├── set-3-sh-0-verify-publications │ └── sh-0-background-subscriptions │ └── sample-simple │ ├── all-pub-matches │ ├── all-publications │ ├── all-pubs-for-each-sub │ ├── all-subscriptions │ ├── sample-simple │ └── sh-0-subscriptions ├── setup ├── apt-install.sh ├── base-virtualenv-setup.sh ├── mariadb-server-setup.sh ├── mariadb_cf │ ├── README.md │ ├── my.cnf.default │ ├── my.cnf.diff │ └── my.cnf.spar ├── sparta-virtualenv-setup.sh └── ubuntu-virtualenv-setup.sh └── spar_python ├── .gitignore ├── README.md ├── SConscript ├── __init__.py ├── analytics ├── __init__.py ├── common │ ├── __init__.py │ ├── hwclock_to_epoch_log_converter.py │ ├── log_parser_util.py │ └── log_parser_util_test.py ├── distribution_compare.py ├── distribution_compare_test.py ├── single_percentile_comparator.py ├── ta1 │ ├── __init__.py │ ├── call_remote_parser.py │ ├── common.py │ ├── correctness.py │ ├── ground_truth_to_db.py │ ├── lmregress.py │ ├── lmrtest.py │ ├── parse_client_harness_log.py │ ├── parse_client_harness_log_test.py │ ├── parse_server_harness_log.py │ ├── parse_server_harness_log_test.py │ ├── query_runner_log_parser.py │ └── result_set.py ├── ta2 │ ├── __init__.py │ ├── aggregator.py │ ├── circuit_parameters │ │ ├── circuit_parameters.py │ │ ├── main.py │ │ └── reparse.sh │ ├── log_parser.py │ ├── main.py │ ├── parameter_parser.py │ ├── parse_circuit_log.py │ ├── parse_circuit_log_test.py │ ├── parser_factory.py │ └── script_parser.py └── ta3 │ ├── generate_test_publications.py │ ├── generate_test_subscriptions.py │ └── test_info_parser.py ├── baseline ├── __init__.py ├── create_alarms_join.py ├── create_keywords_stems_join.py ├── create_notes_join_tables.py ├── create_xml_join.py ├── default_alarm_words.py └── default_stopwords.py ├── circuit_generation ├── __init__.py ├── circuit_common │ ├── __init__.py │ ├── circuit_input.py │ └── circuit_input_test.py ├── ibm │ ├── __init__.py │ ├── generate_all_phase2.sh │ ├── generate_all_phase2_rr.sh │ ├── ibm_batch.py │ ├── ibm_batch_test.py │ ├── ibm_circuit.py │ ├── ibm_circuit_object.py │ ├── ibm_circuit_object_test.py │ ├── ibm_circuit_test.py │ ├── ibm_gate.py │ ├── ibm_gate_add.py │ ├── ibm_gate_add_const.py │ ├── ibm_gate_add_const_test.py │ ├── ibm_gate_add_test.py │ ├── ibm_gate_mul.py │ ├── ibm_gate_mul_const.py │ ├── ibm_gate_mul_const_test.py │ ├── ibm_gate_mul_test.py │ ├── ibm_gate_one_inp_and_const.py │ ├── ibm_gate_one_inp_and_const_test.py │ ├── ibm_gate_rotate.py │ ├── ibm_gate_rotate_test.py │ ├── ibm_gate_select.py │ ├── ibm_gate_select_test.py │ ├── ibm_gate_test.py │ ├── ibm_gate_two_inps.py │ ├── ibm_gate_two_inps_and_const.py │ ├── ibm_gate_two_inps_and_const_test.py │ ├── ibm_gate_two_inps_test.py │ ├── ibm_generate.py │ ├── ibm_generate_test.py │ ├── ibm_generation_functions.py │ ├── ibm_generation_functions_test.py │ ├── ibm_wire.py │ ├── ibm_wire_test.py │ ├── phase1_tests │ │ ├── 01_one_of_each_small │ │ │ ├── K=128 │ │ │ │ └── config.txt │ │ │ ├── K=80 │ │ │ │ └── config.txt │ │ │ └── single_gate_type_K=80 │ │ │ │ └── config.txt │ │ ├── 02_one_of_each_medium │ │ │ ├── K=128 │ │ │ │ └── config.txt │ │ │ └── K=80 │ │ │ │ └── config.txt │ │ ├── 03_one_of_each_large │ │ │ ├── K=128 │ │ │ │ └── config.txt │ │ │ └── K=80 │ │ │ │ └── config.txt │ │ ├── 04_single_gate_type │ │ │ └── config.txt │ │ ├── 05_varying_param │ │ │ ├── K=128 │ │ │ │ └── config.txt │ │ │ └── K=80 │ │ │ │ └── config.txt │ │ ├── 06_large │ │ │ ├── K=128 │ │ │ │ └── config.txt │ │ │ └── K=80 │ │ │ │ └── config.txt │ │ └── 07_additional │ │ │ ├── K=128 │ │ │ └── config.txt │ │ │ └── K=80 │ │ │ └── config.txt │ ├── phase2_riskreduction_tests │ │ ├── 01_oneofeach_small_k80.config │ │ ├── 02_oneofeach_small_k128.config │ │ ├── 03_oneofeach_singlegatetype.config │ │ ├── 04_oneofeach_medium_k80.config │ │ ├── 05_oneofeach_medium_k128.config │ │ ├── 06_oneofeach_large_k80.config │ │ ├── 07_oneofeach_large_k128.config │ │ └── 08_oneofeach_additional_k80.config │ └── phase2_tests │ │ ├── 01_oneofeach_small_k80.config │ │ ├── 02_oneofeach_small_k128.config │ │ ├── 03_oneofeach_small_singlegatetype.config │ │ ├── 04_oneofeach_medium_k80.config │ │ ├── 05_oneofeach_medium_k128.config │ │ ├── 06_oneofeach_large_k80.config │ │ ├── 07_oneofeach_large_k128.config │ │ ├── 08_singlegatetype.config │ │ ├── 09_varyingparam_k80.config │ │ ├── 10_varyingparam_k128.config │ │ ├── 11_large_k80.config │ │ ├── 12_large_k128.config │ │ ├── 13_additional_k80.config │ │ └── 14_additional_k128.config └── stealth │ ├── __init__.py │ ├── generate_all_phase1.sh │ ├── generate_small_phase1.sh │ ├── phase1_tests │ ├── 01_one_of_each_small │ │ ├── F=1 │ │ │ └── config.txt │ │ ├── F=2 │ │ │ └── config.txt │ │ └── F=3 │ │ │ └── config.txt │ ├── 02_one_of_each_medium │ │ ├── F=1 │ │ │ └── config.txt │ │ ├── F=2 │ │ │ └── config.txt │ │ └── F=3 │ │ │ └── config.txt │ ├── 03_one_of_each_large │ │ ├── F=1 │ │ │ └── config.txt │ │ ├── F=2 │ │ │ └── config.txt │ │ └── F=3 │ │ │ └── config.txt │ ├── 04_single_gate_type │ │ └── config.txt │ ├── 05_varying_param │ │ ├── F=1 │ │ │ └── config.txt │ │ ├── F=2 │ │ │ ├── X=10 │ │ │ │ ├── fx=.0000001 │ │ │ │ │ └── config.txt │ │ │ │ └── fx=.25 │ │ │ │ │ └── config.txt │ │ │ ├── X=100 │ │ │ │ ├── fx=.0000001 │ │ │ │ │ └── config.txt │ │ │ │ └── fx=.25 │ │ │ │ │ └── config.txt │ │ │ ├── X=1000 │ │ │ │ ├── fx=.0000001 │ │ │ │ │ └── config.txt │ │ │ │ └── fx=.25 │ │ │ │ │ └── config.txt │ │ │ └── X=500 │ │ │ │ ├── fx=.0000001 │ │ │ │ └── config.txt │ │ │ │ └── fx=.25 │ │ │ │ └── config.txt │ │ └── F=3 │ │ │ └── config.txt │ ├── 06_large │ │ ├── F=1 │ │ │ └── config.txt │ │ ├── F=2 │ │ │ └── config.txt │ │ └── F=3 │ │ │ └── config.txt │ ├── 07_one_of_each_very_large │ │ └── config.txt │ ├── 08_very_large │ │ └── config.txt │ └── testfile │ │ ├── 01_one_of_each_small_f1.ts │ │ ├── 02_one_of_each_small_f2.ts │ │ ├── 03_one_of_each_small_f3.ts │ │ ├── 04_one_of_each_medium_f1.ts │ │ ├── 05_one_of_each_medium_f2.ts │ │ ├── 06_one_of_each_medium_f3.ts │ │ ├── 07_one_of_each_large_f1.ts │ │ ├── 08_one_of_each_large_f2.ts │ │ ├── 09_one_of_each_large_f3.ts │ │ ├── 10_single_gate_type.ts │ │ ├── 11_varying_param_f1.ts │ │ ├── 12_varying_param_f2_x10_fx1e-7.ts │ │ ├── 13_varying_param_f2_x10_fx25e-2.ts │ │ ├── 14_varying_param_f2_x100_fx1e-7.ts │ │ ├── 15_varying_param_f2_x100_fx25e-2.ts │ │ ├── 16_varying_param_f2_x500_fx1e-7.ts │ │ ├── 17_varying_param_f2_x500_fx25e-2.ts │ │ ├── 18_varying_param_f2_x1000_fx1e-7.ts │ │ ├── 19_varying_param_f2_x1000_fx25e-2.ts │ │ ├── 20_varying_param_f3.ts │ │ ├── 21_large_f1.ts │ │ ├── 22_large_f2.ts │ │ ├── 23_large_f3.ts │ │ ├── 24_one_of_each_very_large.ts │ │ └── 25_very_large.ts │ ├── stealth_circuit.py │ ├── stealth_circuit_object.py │ ├── stealth_circuit_object_test.py │ ├── stealth_circuit_test.py │ ├── stealth_gate.py │ ├── stealth_gate_and.py │ ├── stealth_gate_and_test.py │ ├── stealth_gate_or.py │ ├── stealth_gate_or_test.py │ ├── stealth_gate_test.py │ ├── stealth_gate_xor.py │ ├── stealth_gate_xor_test.py │ ├── stealth_generate.py │ ├── stealth_generate_test.py │ ├── stealth_generation_functions.py │ ├── stealth_generation_functions_test.py │ ├── stealth_wire.py │ └── stealth_wire_test.py ├── common ├── __init__.py ├── aggregators │ ├── __init__.py │ ├── atomic_query_aggregators.py │ ├── atomic_query_aggregators_test.py │ ├── base_aggregator.py │ ├── benchmark_aggregator.py │ ├── compound_aggregators.py │ ├── compound_aggregators_test.py │ ├── counts_aggregator.py │ ├── counts_aggregator_test.py │ ├── line_raw_aggregator.py │ ├── line_raw_aggregator_test.py │ ├── query_aggregator.py │ └── query_aggregator_test.py ├── array_view.py ├── array_view_test.py ├── commented_file_iterator.py ├── commented_file_iterator_test.py ├── contingency_table.py ├── contingency_table_test.py ├── default_dict.py ├── default_dict_test.py ├── distributions │ ├── .gitignore │ ├── SConscript │ ├── __init__.py │ ├── alarm_words.txt │ ├── base_distributions.py │ ├── base_distributions_test.py │ ├── bespoke_distributions.py │ ├── bespoke_distributions_test.py │ ├── distribution_holder.py │ ├── generated_text.py │ ├── generated_text_test.py │ ├── setup.py │ ├── text_distribution.py │ ├── text_distribution_test.py │ ├── text_generator.pyx │ ├── text_generator_test.py │ ├── xml_generator.py │ └── xml_generator_test.py ├── enum.py ├── enum_test.py ├── file_handle_object.py ├── memo_table.py ├── memo_table_test.py ├── pickle_iter.py ├── pickle_iter_test.py ├── simple_condition.py ├── simple_condition_test.py ├── spar_random.py ├── spar_random_test.py ├── spar_stemming.py ├── spar_stemming_tests.py ├── symmetric_dict.py ├── symmetric_dict_test.py ├── test_file_handle_object.py ├── timer.py ├── unique_id_assigner.py └── unique_id_assigner_test.py ├── data_generation ├── .gitignore ├── __init__.py ├── data_generation.README ├── data_generator_engine.py ├── data_generator_engine_test.py ├── file_iterators.py ├── file_iterators_test.py ├── generated_row.py ├── generated_row_test.py ├── generator_workers.py ├── generator_workers_test.py ├── learn_distributions.py ├── learn_distributions_test.py ├── learning │ ├── .gitignore │ ├── __init__.py │ ├── get_data.py │ ├── mock_data_files.py │ ├── pums_record_handler.py │ ├── pums_record_handler_test.py │ ├── pums_variables.py │ ├── pums_variables_test.py │ ├── street_addresses.csv.zip │ └── url_dict.py ├── output_ordering.py ├── progress_reporters.py ├── progress_reporters_test.py ├── sanitization.py ├── sanitization_test.py ├── spar_variables.py ├── spar_variables_test.py └── test_schema.csv ├── external ├── __init__.py └── porterstemmer │ ├── README.txt │ ├── __init__.py │ └── stemmer.py ├── optimization_notes.txt ├── perf_monitoring ├── __init__.py ├── cpu_log_parser.py ├── cpu_log_parser_test.py ├── create_perf_graphs.py ├── create_perf_graphs_test.py ├── disk_log_parser.py ├── disk_log_parser_test.py ├── file_utils.py ├── file_utils_test.py ├── network_log_parser.py ├── network_log_parser_test.py ├── pcap_parser.py ├── pcap_parser_test.py ├── perf_db.py ├── perf_db_test.py ├── perf_logs_to_db.py ├── perf_monitoring.md ├── ram_log_parser.py ├── ram_log_parser_test.py ├── sample_files │ ├── sample_cpu_log.txt │ ├── sample_disk_log.txt │ ├── sample_harness_log.txt │ ├── sample_network_log.txt │ └── sample_ram_log.txt ├── start_perf_monitors.py ├── stop_perf_monitors.py ├── tcpdump_parser.py ├── test.pcap ├── test_ip_mappings.txt ├── time_utils.py └── time_utils_test.py ├── query_generation ├── .gitignore ├── BOQs │ ├── __init__.py │ ├── atomic_query_batches.py │ ├── atomic_query_batches_test.py │ ├── compound_query_batch.py │ ├── compound_query_batch_test.py │ └── query_batch.py ├── __init__.py ├── benchmark_pre_test_generation.py ├── check_schema.py ├── fill_matching_record_hashes.py ├── fill_matching_record_hashes_test.py ├── generators │ ├── __init__.py │ ├── alarm_query_generator.py │ ├── alarm_query_generator_test.py │ ├── compound_query_generator.py │ ├── compound_query_generator_test.py │ ├── equality_query_generator.py │ ├── equality_query_generator_test.py │ ├── foo_range_query_generator.py │ ├── foo_range_query_generator_test.py │ ├── keyword_query_generator.py │ ├── keyword_query_generator_test.py │ ├── query_object.py │ ├── range_query_generator.py │ ├── range_query_generator_test.py │ ├── ta2_query_generator.py │ ├── ta2_query_generator_test.py │ ├── testing │ │ └── __init__.py │ ├── wildcard_query_generator.py │ ├── wildcard_query_generator_test.py │ ├── xml_query_generator.py │ └── xml_query_generator_test.py ├── learn_query_types.py ├── learn_query_types_test.py ├── pickler.py ├── pre_test_generation.md ├── pre_test_generation.py ├── pre_test_generation_test.py ├── query_bounds.py ├── query_bounds_test.py ├── query_generation.README ├── query_generation.py ├── query_generation_test.py ├── query_handler.py ├── query_handler_test.py ├── query_ids.py ├── query_ids_test.py ├── query_result.py ├── query_result_test.py ├── query_schema.py ├── rebuild_atomic_junction.py └── test_schemas │ ├── test_schema_P11.csv │ ├── test_schema_P1_and.csv │ ├── test_schema_P1_or.csv │ ├── test_schema_P2.csv │ ├── test_schema_P3.csv │ ├── test_schema_P4.csv │ ├── test_schema_P6.csv │ ├── test_schema_P7.csv │ ├── test_schema_P8.csv │ ├── test_schema_P9_alarm.csv │ └── test_schema_eq.csv ├── remote_runner ├── __init__.py ├── config_classes.py ├── config_classes_test.py ├── config_util.py ├── config_util_test.py ├── example │ ├── arg_muddler.py │ ├── config.py │ ├── dir1 │ │ ├── file1 │ │ ├── file2 │ │ ├── sub1 │ │ │ └── file1 │ │ └── sub2 │ │ │ ├── file1 │ │ │ └── file2 │ ├── extra_args_parser.py │ └── script.sh ├── remote_runner.md ├── remote_runner.py ├── remote_runner_test.py ├── ssh_manager.py └── ssh_thread.py ├── report_generation ├── __init__.py ├── a_base_ta2_config.py ├── a_mdb_ta1_config.py ├── common │ ├── __init__.py │ ├── config.py │ ├── correctness_getter.py │ ├── graphing.py │ ├── graphing_test.py │ ├── latex_classes.py │ ├── latex_classes_test.py │ ├── percentile_finder.py │ ├── percentile_finder_test.py │ ├── percentiles.py │ ├── regression.py │ ├── regression_test.py │ ├── report_generator.py │ ├── results_database.py │ ├── results_database_test.py │ ├── results_schema.py │ └── section.py ├── generate_report.md ├── generate_report.py ├── helper │ └── __init__.py ├── ta1 │ ├── __init__.py │ ├── ta1_analysis_correctness.py │ ├── ta1_analysis_correctness_test.py │ ├── ta1_analysis_input.py │ ├── ta1_analysis_input_test.py │ ├── ta1_analysis_modifications.py │ ├── ta1_analysis_modifications_test.py │ ├── ta1_analysis_percentiles.py │ ├── ta1_analysis_percentiles_test.py │ ├── ta1_config.py │ ├── ta1_config_test.py │ ├── ta1_database.py │ ├── ta1_database_test.py │ ├── ta1_report_generator.py │ ├── ta1_schema.py │ ├── ta1_schema_test.py │ ├── ta1_section.py │ ├── ta1_section_correctness.py │ ├── ta1_section_correctness_policy.py │ ├── ta1_section_correctness_query.py │ ├── ta1_section_modifications.py │ ├── ta1_section_overview.py │ ├── ta1_section_overview_common.py │ ├── ta1_section_overview_eq.py │ ├── ta1_section_overview_p1_eqand.py │ ├── ta1_section_overview_p1_eqdnf.py │ ├── ta1_section_overview_p1_eqor.py │ ├── ta1_section_overview_p1_otheribm.py │ ├── ta1_section_overview_p1_proofofconcept.py │ ├── ta1_section_overview_p2.py │ ├── ta1_section_overview_p3p4p6p7.py │ ├── ta1_section_overview_p8p9_eq.py │ ├── ta1_section_overview_p8p9_other.py │ ├── ta1_section_performance_latency.py │ ├── ta1_section_performance_percentiles.py │ ├── ta1_section_performance_percentiles_aux.py │ ├── ta1_section_performance_throughput.py │ ├── ta1_section_supported_query_types.py │ ├── ta1_section_system_utilization.py │ ├── ta1_section_test.py │ ├── ta1_test_database.py │ └── ta1_test_database_test.py ├── ta2 │ ├── __init__.py │ ├── ta2_analysis_correctness.py │ ├── ta2_analysis_correctness_test.py │ ├── ta2_analysis_percentiles.py │ ├── ta2_analysis_percentiles_test.py │ ├── ta2_config.py │ ├── ta2_config_test.py │ ├── ta2_database.py │ ├── ta2_database_test.py │ ├── ta2_report_generator.py │ ├── ta2_schema.py │ ├── ta2_section.py │ ├── ta2_section_correctness.py │ ├── ta2_section_performance.py │ ├── ta2_section_performance_decryption.py │ ├── ta2_section_performance_encryption.py │ ├── ta2_section_performance_evaluation.py │ ├── ta2_section_performance_ingestion.py │ ├── ta2_section_performance_keygen.py │ ├── ta2_section_performance_singlegatetype.py │ ├── ta2_section_performance_totalelapsedtime.py │ ├── ta2_section_system_utilization.py │ └── ta2_section_test.py └── templates │ ├── report.txt │ ├── ta1_correctness.txt │ ├── ta1_correctness_policy.txt │ ├── ta1_correctness_query.txt │ ├── ta1_modifications.txt │ ├── ta1_other_sections.txt │ ├── ta1_overview.txt │ ├── ta1_overview_common.txt │ ├── ta1_overview_common_subcat.txt │ ├── ta1_overview_complex.txt │ ├── ta1_overview_eq.txt │ ├── ta1_overview_p1_eqand.txt │ ├── ta1_overview_p1_eqandordnf.txt │ ├── ta1_overview_p1_eqdnf.txt │ ├── ta1_overview_p1_eqor.txt │ ├── ta1_overview_p1_otheribm.txt │ ├── ta1_overview_p1_proofofconcept.txt │ ├── ta1_overview_p2.txt │ ├── ta1_overview_p3p4p6p7.txt │ ├── ta1_overview_p8p9_eq.txt │ ├── ta1_overview_p8p9_other.txt │ ├── ta1_performance.txt │ ├── ta1_performance_latency.txt │ ├── ta1_performance_percentiles.txt │ ├── ta1_performance_percentiles_aux.txt │ ├── ta1_performance_throughput.txt │ ├── ta1_supported_query_types.txt │ ├── ta1_system_utilization.txt │ ├── ta2_correctness.txt │ ├── ta2_other_sections.txt │ ├── ta2_performance.txt │ ├── ta2_performance_decryption.txt │ ├── ta2_performance_encryption.txt │ ├── ta2_performance_evaluation.txt │ ├── ta2_performance_ingestion.txt │ ├── ta2_performance_keygen.txt │ ├── ta2_performance_singlegatetype.txt │ ├── ta2_performance_totalelapsedtime.txt │ └── ta2_system_utilization.txt ├── requirements-0.txt ├── requirements-1.txt ├── sql_generation ├── __init__.py └── sql_generator.py └── test_generation ├── README ├── __init__.py ├── create_atomic_scripts.py ├── create_modification_scripts.py ├── create_scripts.py ├── create_scripts_test.py ├── empty_resultdb_mods_tables.py ├── modification_generator.py ├── performer_timing_data.csv ├── query_file_handler.py ├── query_file_handler_test.py ├── read_lineraw.py ├── show_result_db_mod_tables.py ├── test_utils.py └── test_utils_test.py /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/SConstruct -------------------------------------------------------------------------------- /cpp/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/BUILD.md -------------------------------------------------------------------------------- /cpp/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/SConscript -------------------------------------------------------------------------------- /cpp/baseline/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/SConscript -------------------------------------------------------------------------------- /cpp/baseline/common/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/SConscript -------------------------------------------------------------------------------- /cpp/baseline/common/clearcache-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/clearcache-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/common/clearcache-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/clearcache-handler.h -------------------------------------------------------------------------------- /cpp/baseline/common/clearcache-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/clearcache-handler_test.cc -------------------------------------------------------------------------------- /cpp/baseline/common/common-mysql-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/common-mysql-defs.h -------------------------------------------------------------------------------- /cpp/baseline/common/extensible-ready-handler-fixture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/extensible-ready-handler-fixture.cc -------------------------------------------------------------------------------- /cpp/baseline/common/extensible-ready-handler-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/extensible-ready-handler-fixture.h -------------------------------------------------------------------------------- /cpp/baseline/common/extensible-ready-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/extensible-ready-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/common/extensible-ready-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/extensible-ready-handler.h -------------------------------------------------------------------------------- /cpp/baseline/common/extensible-ready-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/extensible-ready-handler_test.cc -------------------------------------------------------------------------------- /cpp/baseline/common/mysql-connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/mysql-connection.cc -------------------------------------------------------------------------------- /cpp/baseline/common/mysql-connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/mysql-connection.h -------------------------------------------------------------------------------- /cpp/baseline/common/numbered-command-extension-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/numbered-command-extension-fixture.h -------------------------------------------------------------------------------- /cpp/baseline/common/numbered-command-receiver-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/numbered-command-receiver-fixture.h -------------------------------------------------------------------------------- /cpp/baseline/common/numbered-command-receiver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/numbered-command-receiver.cc -------------------------------------------------------------------------------- /cpp/baseline/common/numbered-command-receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/numbered-command-receiver.h -------------------------------------------------------------------------------- /cpp/baseline/common/numbered-command-receiver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/numbered-command-receiver_test.cc -------------------------------------------------------------------------------- /cpp/baseline/common/shutdown-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/shutdown-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/common/shutdown-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/shutdown-handler.h -------------------------------------------------------------------------------- /cpp/baseline/common/stemmer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/stemmer.cc -------------------------------------------------------------------------------- /cpp/baseline/common/stemmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/stemmer.h -------------------------------------------------------------------------------- /cpp/baseline/common/stemmer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/common/stemmer_test.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-client/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-client/SConscript -------------------------------------------------------------------------------- /cpp/baseline/mysql-client/mysql-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-client/mysql-main.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-client/query-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-client/query-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-client/query-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-client/query-handler.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-client/query-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-client/query-handler_test.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/SConscript -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/alarm-words-default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/alarm-words-default.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/alarm-words.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/alarm-words.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/alarm-words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/alarm-words.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/alarm-words_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/alarm-words_test.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/bind-manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/bind-manager.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/bind-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/bind-manager.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/data-inserter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/data-inserter.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/data-inserter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/data-inserter.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/delete-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/delete-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/delete-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/delete-handler.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/directory-importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/directory-importer.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/index-table-insert-builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/index-table-insert-builder.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/index-table-insert-builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/index-table-insert-builder.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/insert-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/insert-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/insert-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/insert-handler.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/insert-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/insert-handler_test.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/m_of_n.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/m_of_n.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/notes-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/notes-parser.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/notes-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/notes-parser.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/notes-parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/notes-parser_test.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/server-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/server-main.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/update-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/update-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/update-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/update-handler.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/update-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/update-handler_test.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/util.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/util.h -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/verify-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/verify-handler.cc -------------------------------------------------------------------------------- /cpp/baseline/mysql-server/verify-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/mysql-server/verify-handler.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/SConscript -------------------------------------------------------------------------------- /cpp/baseline/ta2/common/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/common/SConscript -------------------------------------------------------------------------------- /cpp/baseline/ta2/common/baseline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/common/baseline.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/common/baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/common/baseline.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/common/circuit-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/common/circuit-parser.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/common/flex-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/common/flex-def.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/common/lemon-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/common/lemon-def.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/common/lex-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/common/lex-global.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/SConscript -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/add-const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/add-const.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/add.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/binary-gate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/binary-gate.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/binary-gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/binary-gate.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/circuit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/circuit.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/circuit.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/gate.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-baseline-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-baseline-main.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-baseline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-baseline.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-baseline.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-circuit-gates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-circuit-gates.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-circuit-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-circuit-parser.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-circuit-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-circuit-parser.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-circuit-parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-circuit-parser_test.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-def.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-gate_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-gate_test.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-parser.y -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/ibm-scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/ibm-scanner.l -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/mul-const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/mul-const.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/mul.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/rotate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/rotate.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/rotate.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/select.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/unary-gate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/unary-gate.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/unary-gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/unary-gate.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/ibm/wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/ibm/wire.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/SConscript -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/and.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/and.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/and.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/and.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/circuit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/circuit.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/circuit.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/gate.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/multi-input-gate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/multi-input-gate.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/multi-input-gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/multi-input-gate.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/not.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/or.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/or.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/or.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-baseline-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-baseline-main.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-baseline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-baseline.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-baseline.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-circuit-gates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-circuit-gates.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-circuit-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-circuit-parser.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-circuit-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-circuit-parser.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-circuit-parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-circuit-parser_test.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-def.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-gate_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-gate_test.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-parser.y -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-parser_test.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/stealth-scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/stealth-scanner.l -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/wire.h -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/xor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/xor.cc -------------------------------------------------------------------------------- /cpp/baseline/ta2/stealth/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/baseline/ta2/stealth/xor.h -------------------------------------------------------------------------------- /cpp/common/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/SConscript -------------------------------------------------------------------------------- /cpp/common/aggregating-future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/aggregating-future.h -------------------------------------------------------------------------------- /cpp/common/aggregating-future_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/aggregating-future_test.cc -------------------------------------------------------------------------------- /cpp/common/bpbuffer-strand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/bpbuffer-strand.cc -------------------------------------------------------------------------------- /cpp/common/bpbuffer-strand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/bpbuffer-strand.h -------------------------------------------------------------------------------- /cpp/common/buffer-pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/buffer-pool.cc -------------------------------------------------------------------------------- /cpp/common/buffer-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/buffer-pool.h -------------------------------------------------------------------------------- /cpp/common/buffer-pool_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/buffer-pool_test.cc -------------------------------------------------------------------------------- /cpp/common/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/check.h -------------------------------------------------------------------------------- /cpp/common/check_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/check_test.cc -------------------------------------------------------------------------------- /cpp/common/conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/conditions.h -------------------------------------------------------------------------------- /cpp/common/event-loop-base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/event-loop-base.cc -------------------------------------------------------------------------------- /cpp/common/event-loop-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/event-loop-base.h -------------------------------------------------------------------------------- /cpp/common/event-loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/event-loop.cc -------------------------------------------------------------------------------- /cpp/common/event-loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/event-loop.h -------------------------------------------------------------------------------- /cpp/common/event-loop_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/event-loop_test.cc -------------------------------------------------------------------------------- /cpp/common/example-network-client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/example-network-client.cc -------------------------------------------------------------------------------- /cpp/common/example-network-server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/example-network-server.cc -------------------------------------------------------------------------------- /cpp/common/file-pipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/file-pipe.cc -------------------------------------------------------------------------------- /cpp/common/file-pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/file-pipe.h -------------------------------------------------------------------------------- /cpp/common/fixed-size-memory-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/fixed-size-memory-pool.h -------------------------------------------------------------------------------- /cpp/common/future-waiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/future-waiter.h -------------------------------------------------------------------------------- /cpp/common/future-waiter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/future-waiter_test.cc -------------------------------------------------------------------------------- /cpp/common/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/future.h -------------------------------------------------------------------------------- /cpp/common/future_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/future_test.cc -------------------------------------------------------------------------------- /cpp/common/general-logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/general-logger.cc -------------------------------------------------------------------------------- /cpp/common/general-logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/general-logger.h -------------------------------------------------------------------------------- /cpp/common/general-logger_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/general-logger_test.cc -------------------------------------------------------------------------------- /cpp/common/hash-aggregator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/hash-aggregator.cc -------------------------------------------------------------------------------- /cpp/common/hash-aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/hash-aggregator.h -------------------------------------------------------------------------------- /cpp/common/host-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/host-port.cc -------------------------------------------------------------------------------- /cpp/common/host-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/host-port.h -------------------------------------------------------------------------------- /cpp/common/knot-impl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-impl/SConscript -------------------------------------------------------------------------------- /cpp/common/knot-impl/knot-node-deque.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-impl/knot-node-deque.cc -------------------------------------------------------------------------------- /cpp/common/knot-impl/knot-node-deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-impl/knot-node-deque.h -------------------------------------------------------------------------------- /cpp/common/knot-impl/knot-node-deque_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-impl/knot-node-deque_test.cc -------------------------------------------------------------------------------- /cpp/common/knot-impl/knot-node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-impl/knot-node.h -------------------------------------------------------------------------------- /cpp/common/knot-impl/strand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-impl/strand.cc -------------------------------------------------------------------------------- /cpp/common/knot-impl/strand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-impl/strand.h -------------------------------------------------------------------------------- /cpp/common/knot-iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-iterator.cc -------------------------------------------------------------------------------- /cpp/common/knot-iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-iterator.h -------------------------------------------------------------------------------- /cpp/common/knot-iterator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot-iterator_test.cc -------------------------------------------------------------------------------- /cpp/common/knot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot.cc -------------------------------------------------------------------------------- /cpp/common/knot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot.h -------------------------------------------------------------------------------- /cpp/common/knot_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/knot_test.cc -------------------------------------------------------------------------------- /cpp/common/line-raw-data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-data.cc -------------------------------------------------------------------------------- /cpp/common/line-raw-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-data.h -------------------------------------------------------------------------------- /cpp/common/line-raw-data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-data_test.cc -------------------------------------------------------------------------------- /cpp/common/line-raw-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-parser.cc -------------------------------------------------------------------------------- /cpp/common/line-raw-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-parser.h -------------------------------------------------------------------------------- /cpp/common/line-raw-parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-parser_test.cc -------------------------------------------------------------------------------- /cpp/common/line-raw-to-output-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-to-output-handler.cc -------------------------------------------------------------------------------- /cpp/common/line-raw-to-output-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-to-output-handler.h -------------------------------------------------------------------------------- /cpp/common/line-raw-to-output-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/line-raw-to-output-handler_test.cc -------------------------------------------------------------------------------- /cpp/common/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/logging.cc -------------------------------------------------------------------------------- /cpp/common/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/logging.h -------------------------------------------------------------------------------- /cpp/common/logging_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/logging_test.cc -------------------------------------------------------------------------------- /cpp/common/network-client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/network-client.cc -------------------------------------------------------------------------------- /cpp/common/network-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/network-client.h -------------------------------------------------------------------------------- /cpp/common/network-connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/network-connection.cc -------------------------------------------------------------------------------- /cpp/common/network-connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/network-connection.h -------------------------------------------------------------------------------- /cpp/common/network-server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/network-server.cc -------------------------------------------------------------------------------- /cpp/common/network-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/network-server.h -------------------------------------------------------------------------------- /cpp/common/networking_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/networking_test.cc -------------------------------------------------------------------------------- /cpp/common/object_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/object_threads.h -------------------------------------------------------------------------------- /cpp/common/object_threads_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/object_threads_test.cc -------------------------------------------------------------------------------- /cpp/common/output-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/output-handler.cc -------------------------------------------------------------------------------- /cpp/common/output-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/output-handler.h -------------------------------------------------------------------------------- /cpp/common/periodic-real-time-logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/periodic-real-time-logger.cc -------------------------------------------------------------------------------- /cpp/common/periodic-real-time-logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/periodic-real-time-logger.h -------------------------------------------------------------------------------- /cpp/common/periodic-real-time-logger_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/periodic-real-time-logger_test.cc -------------------------------------------------------------------------------- /cpp/common/protocol-extension-manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/protocol-extension-manager.cc -------------------------------------------------------------------------------- /cpp/common/protocol-extension-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/protocol-extension-manager.h -------------------------------------------------------------------------------- /cpp/common/protocol-extension-manager_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/protocol-extension-manager_test.cc -------------------------------------------------------------------------------- /cpp/common/read-event-loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/read-event-loop.cc -------------------------------------------------------------------------------- /cpp/common/read-event-loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/read-event-loop.h -------------------------------------------------------------------------------- /cpp/common/safe-file-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/safe-file-stream.h -------------------------------------------------------------------------------- /cpp/common/schema.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/schema.cc -------------------------------------------------------------------------------- /cpp/common/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/schema.h -------------------------------------------------------------------------------- /cpp/common/schema_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/schema_test.cc -------------------------------------------------------------------------------- /cpp/common/statics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/statics.cc -------------------------------------------------------------------------------- /cpp/common/statics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/statics.h -------------------------------------------------------------------------------- /cpp/common/statics/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/statics/SConscript -------------------------------------------------------------------------------- /cpp/common/statics/ordered-function-registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/statics/ordered-function-registry.cc -------------------------------------------------------------------------------- /cpp/common/statics/ordered-function-registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/statics/ordered-function-registry.h -------------------------------------------------------------------------------- /cpp/common/statics/ordered-function-registry_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/statics/ordered-function-registry_test.cc -------------------------------------------------------------------------------- /cpp/common/string-algo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/string-algo.cc -------------------------------------------------------------------------------- /cpp/common/string-algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/string-algo.h -------------------------------------------------------------------------------- /cpp/common/string-algo_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/string-algo_test.cc -------------------------------------------------------------------------------- /cpp/common/ta1-constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/ta1-constants.h -------------------------------------------------------------------------------- /cpp/common/test-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/test-init.h -------------------------------------------------------------------------------- /cpp/common/test-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/test-util.cc -------------------------------------------------------------------------------- /cpp/common/test-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/test-util.h -------------------------------------------------------------------------------- /cpp/common/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/timer.cc -------------------------------------------------------------------------------- /cpp/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/timer.h -------------------------------------------------------------------------------- /cpp/common/timer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/timer_test.cc -------------------------------------------------------------------------------- /cpp/common/topological-iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/topological-iterator.h -------------------------------------------------------------------------------- /cpp/common/topological-iterator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/topological-iterator_test.cc -------------------------------------------------------------------------------- /cpp/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/types.h -------------------------------------------------------------------------------- /cpp/common/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/util.cc -------------------------------------------------------------------------------- /cpp/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/util.h -------------------------------------------------------------------------------- /cpp/common/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/util_test.cc -------------------------------------------------------------------------------- /cpp/common/write-event-loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/write-event-loop.cc -------------------------------------------------------------------------------- /cpp/common/write-event-loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/common/write-event-loop.h -------------------------------------------------------------------------------- /cpp/data-generation/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/data-generation/SConscript -------------------------------------------------------------------------------- /cpp/data-generation/fingerprint-generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/data-generation/fingerprint-generator.cpp -------------------------------------------------------------------------------- /cpp/data-generation/fingerprint-generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/data-generation/fingerprint-generator.h -------------------------------------------------------------------------------- /cpp/data-generation/fingerprint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/data-generation/fingerprint_test.cpp -------------------------------------------------------------------------------- /cpp/data-generation/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/data-generation/generator.cpp -------------------------------------------------------------------------------- /cpp/data-generation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/data-generation/setup.py -------------------------------------------------------------------------------- /cpp/harness-testing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/README -------------------------------------------------------------------------------- /cpp/harness-testing/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/SConscript -------------------------------------------------------------------------------- /cpp/harness-testing/asyncproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/asyncproc.py -------------------------------------------------------------------------------- /cpp/harness-testing/c-style-throughput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/c-style-throughput.cc -------------------------------------------------------------------------------- /cpp/harness-testing/dummy-ta3-client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/dummy-ta3-client.cc -------------------------------------------------------------------------------- /cpp/harness-testing/dummy-ta3-server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/dummy-ta3-server.cc -------------------------------------------------------------------------------- /cpp/harness-testing/event-loop-throughput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/event-loop-throughput.cc -------------------------------------------------------------------------------- /cpp/harness-testing/plot-results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/plot-results.py -------------------------------------------------------------------------------- /cpp/harness-testing/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/run_tests.py -------------------------------------------------------------------------------- /cpp/harness-testing/silly-async-throughput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/silly-async-throughput.py -------------------------------------------------------------------------------- /cpp/harness-testing/silly-client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/silly-client.cc -------------------------------------------------------------------------------- /cpp/harness-testing/silly-throughput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/silly-throughput.cc -------------------------------------------------------------------------------- /cpp/harness-testing/silly-throughput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/harness-testing/silly-throughput.py -------------------------------------------------------------------------------- /cpp/scons_cpp_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/scons_cpp_helper.py -------------------------------------------------------------------------------- /cpp/test-harness/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/common/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/common/agg-numbered-command-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/agg-numbered-command-fixture.h -------------------------------------------------------------------------------- /cpp/test-harness/common/agg-numbered-command-sender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/agg-numbered-command-sender.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/agg-numbered-command-sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/agg-numbered-command-sender.h -------------------------------------------------------------------------------- /cpp/test-harness/common/call-remote-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/call-remote-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/call-remote-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/call-remote-script.h -------------------------------------------------------------------------------- /cpp/test-harness/common/delay-generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/delay-generators.h -------------------------------------------------------------------------------- /cpp/test-harness/common/delay-generators_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/delay-generators_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/event-message-monitor-fixture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/event-message-monitor-fixture.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/event-message-monitor-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/event-message-monitor-fixture.h -------------------------------------------------------------------------------- /cpp/test-harness/common/event-message-monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/event-message-monitor.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/event-message-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/event-message-monitor.h -------------------------------------------------------------------------------- /cpp/test-harness/common/event-message-monitor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/event-message-monitor_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/generic-log-message-formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/generic-log-message-formats.h -------------------------------------------------------------------------------- /cpp/test-harness/common/generic-numbered-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/generic-numbered-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/generic-numbered-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/generic-numbered-command.h -------------------------------------------------------------------------------- /cpp/test-harness/common/log-file-generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/log-file-generator.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/log-file-generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/log-file-generator.h -------------------------------------------------------------------------------- /cpp/test-harness/common/multi-numbered-command-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/multi-numbered-command-fixture.h -------------------------------------------------------------------------------- /cpp/test-harness/common/multi-numbered-command-sender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/multi-numbered-command-sender.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/multi-numbered-command-sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/multi-numbered-command-sender.h -------------------------------------------------------------------------------- /cpp/test-harness/common/network-protocol-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/network-protocol-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/network-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/network-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-counter.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-counter.h -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-counter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-counter_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-fixture.h -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-sender-base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-sender-base.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-sender-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-sender-base.h -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-sender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-sender.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-sender.h -------------------------------------------------------------------------------- /cpp/test-harness/common/numbered-command-sender_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/numbered-command-sender_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/ready-monitor-fixture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/ready-monitor-fixture.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/ready-monitor-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/ready-monitor-fixture.h -------------------------------------------------------------------------------- /cpp/test-harness/common/ready-monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/ready-monitor.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/ready-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/ready-monitor.h -------------------------------------------------------------------------------- /cpp/test-harness/common/ready-monitor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/ready-monitor_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-command-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-command-fixture.h -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-command-sender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-command-sender.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-command-sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-command-sender.h -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-commands.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-commands.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-commands.h -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-commands_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-commands_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-local-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-local-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/root-mode-local-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/root-mode-local-script.h -------------------------------------------------------------------------------- /cpp/test-harness/common/run-script-over-network_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/run-script-over-network_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/sample-sut-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/sample-sut-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/common/script-manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/script-manager.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/script-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/script-manager.h -------------------------------------------------------------------------------- /cpp/test-harness/common/scripts-from-file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/scripts-from-file.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/scripts-from-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/scripts-from-file.h -------------------------------------------------------------------------------- /cpp/test-harness/common/scripts-from-file_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/scripts-from-file_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/spawn-sut.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/spawn-sut.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/spawn-sut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/spawn-sut.h -------------------------------------------------------------------------------- /cpp/test-harness/common/spawn-sut_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/spawn-sut_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/sut-protocol-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/sut-protocol-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/sut-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/sut-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/common/sut-running-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/sut-running-monitor.h -------------------------------------------------------------------------------- /cpp/test-harness/common/test-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/test-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/test-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/test-script.h -------------------------------------------------------------------------------- /cpp/test-harness/common/th-run-script-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/th-run-script-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/th-run-script-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/th-run-script-command.h -------------------------------------------------------------------------------- /cpp/test-harness/common/th-run-script-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/th-run-script-handler.cc -------------------------------------------------------------------------------- /cpp/test-harness/common/th-run-script-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/common/th-run-script-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta1/client-harness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/client-harness.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/client-sut-protocol-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/client-sut-protocol-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/client-sut-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/client-sut-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/delete-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/delete-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/delete-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/delete-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/delete-command_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/delete-command_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/insert-atomicity-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/insert-atomicity-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/insert-atomicity-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/insert-atomicity-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/insert-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/insert-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/insert-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/insert-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/insert-command_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/insert-command_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/master-harness-network-listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/master-harness-network-listener.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/master-harness-network-listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/master-harness-network-listener.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/query-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/query-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/query-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/query-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/query-command_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/query-command_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/row-hash-aggregator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/row-hash-aggregator.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/row-hash-aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/row-hash-aggregator.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/row-hash-aggregator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/row-hash-aggregator_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/modify-and-query-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/modify-and-query-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/modify-and-query-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/modify-and-query-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/modify-argument-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/modify-argument-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/modify-argument-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/modify-argument-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/query-list-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/query-list-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/query-list-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/query-list-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/root-mode-master-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/root-mode-master-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/root-mode-master-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/root-mode-master-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/verify-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/verify-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/scripts/verify-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/scripts/verify-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/server-harness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/server-harness.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/server-sut-protocol-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/server-sut-protocol-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/server-sut-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/server-sut-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/slave-network-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/slave-network-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/slave-network-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/slave-network-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/ta1-log-message-formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/ta1-log-message-formats.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/ta1-test-harness.md: -------------------------------------------------------------------------------- 1 | ../../../docs/tool-docs/ta1-test-harness.md -------------------------------------------------------------------------------- /cpp/test-harness/ta1/update-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/update-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/update-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/update-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta1/update-command_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/update-command_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/verify-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/verify-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta1/verify-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta1/verify-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta2/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta2/circuit-message-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/circuit-message-handler.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/circuit-message-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/circuit-message-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta2/circuit-message-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/circuit-message-handler_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/dummy-client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/dummy-client.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/input-message-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/input-message-handler.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/input-message-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/input-message-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta2/key-message-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/key-message-handler.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/key-message-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/key-message-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta2/key-message-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/key-message-handler_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/message-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/message-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta2/stream-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/stream-util.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/stream-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/stream-util.h -------------------------------------------------------------------------------- /cpp/test-harness/ta2/stream-util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/stream-util_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/test-harness-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/test-harness-main.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/test-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/test-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta2/test-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta2/test-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta3/client-sut-protocol-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/client-sut-protocol-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/client-sut-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/client-sut-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/client-sut-protocol-stack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/client-sut-protocol-stack_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/publish-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/publish-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/publish-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/publish-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/publish-command_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/publish-command_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/subscribe-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/subscribe-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/subscribe-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/subscribe-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/subscribe-command_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/subscribe-command_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/unsubscribe-command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/unsubscribe-command.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/unsubscribe-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/unsubscribe-command.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/commands/unsubscribe-command_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/commands/unsubscribe-command_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/disconnection-received-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/disconnection-received-handler.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/disconnection-received-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/disconnection-received-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/event-message-fixture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/event-message-fixture.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/event-message-fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/event-message-fixture.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/date-field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/date-field.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/date-field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/date-field.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/date-field_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/date-field_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/field-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/field-base.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/field-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/field-set.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/field-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/field-set.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/field-set_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/field-set_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/integer-field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/integer-field.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/integer-field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/integer-field.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/integer-field_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/integer-field_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/testing-field-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/testing-field-set.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/fields/testing-field-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/fields/testing-field-set.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/harness-info-request-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/harness-info-request-handler.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/harness-info-request-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/harness-info-request-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/harness-info-request-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/harness-info-request-handler_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/master-harness-network-listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/master-harness-network-listener.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/master-harness-network-listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/master-harness-network-listener.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/master-harness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/master-harness.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/multi-client-sut-protocol-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/multi-client-sut-protocol-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/multi-client-sut-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/multi-client-sut-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/pub-sub-gen/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/pub-sub-gen/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta3/pub-sub-gen/test-generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/pub-sub-gen/test-generator.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/pub-sub-gen/test-generator.md: -------------------------------------------------------------------------------- 1 | ../../../../docs/tool-docs/ta3-test-generator.md -------------------------------------------------------------------------------- /cpp/test-harness/ta3/publication-received-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/publication-received-handler.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/publication-received-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/publication-received-handler.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/publication-received-handler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/publication-received-handler_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/SConscript -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/call-remote-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/call-remote-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/call-remote-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/call-remote-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/publish-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/publish-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/publish-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/publish-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/publish-script_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/publish-script_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/root-mode-master-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/root-mode-master-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/root-mode-master-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/root-mode-master-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/subscribe-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/subscribe-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/subscribe-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/subscribe-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/subscribe-script_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/subscribe-script_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/unsubscribe-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/unsubscribe-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/unsubscribe-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/unsubscribe-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/unsubscribe-script_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/unsubscribe-script_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/update-network-map-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/update-network-map-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/update-network-map-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/update-network-map-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/wait-script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/wait-script.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/scripts/wait-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/scripts/wait-script.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/server-sut-protocol-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/server-sut-protocol-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/server-sut-protocol-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/server-sut-protocol-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/server-sut-protocol-stack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/server-sut-protocol-stack_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/slave-harness-network-stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/slave-harness-network-stack.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/slave-harness-network-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/slave-harness-network-stack.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/slave-harness-network-stack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/slave-harness-network-stack_test.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/slave-harness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/slave-harness.cc -------------------------------------------------------------------------------- /cpp/test-harness/ta3/ta3-log-message-formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/test-harness/ta3/ta3-log-message-formats.h -------------------------------------------------------------------------------- /cpp/test-harness/ta3/ta3-test-harness.md: -------------------------------------------------------------------------------- 1 | ../../../docs/tool-docs/ta3-test-harness.md -------------------------------------------------------------------------------- /cpp/third-party/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/third-party/README -------------------------------------------------------------------------------- /cpp/third-party/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/third-party/SConscript -------------------------------------------------------------------------------- /cpp/third-party/stemmer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/third-party/stemmer.c -------------------------------------------------------------------------------- /cpp/third-party/stemmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/cpp/third-party/stemmer.h -------------------------------------------------------------------------------- /docs/ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /docs/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/BUILD.md -------------------------------------------------------------------------------- /docs/CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/CONTRIBUTE.md -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /docs/doc-gen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/doc-gen/Doxyfile -------------------------------------------------------------------------------- /docs/doc-gen/epydoc_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/doc-gen/epydoc_config -------------------------------------------------------------------------------- /docs/doc-gen/makesourcedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/doc-gen/makesourcedocs.sh -------------------------------------------------------------------------------- /docs/doc-gen/projectavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/doc-gen/projectavatar.png -------------------------------------------------------------------------------- /docs/software_doc_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/software_doc_template.md -------------------------------------------------------------------------------- /docs/tool-docs/perf_monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/perf_monitoring.md -------------------------------------------------------------------------------- /docs/tool-docs/pre_test_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/pre_test_generation.md -------------------------------------------------------------------------------- /docs/tool-docs/remote_runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/remote_runner.md -------------------------------------------------------------------------------- /docs/tool-docs/ta1-results-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/ta1-results-database.md -------------------------------------------------------------------------------- /docs/tool-docs/ta1-test-harness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/ta1-test-harness.md -------------------------------------------------------------------------------- /docs/tool-docs/ta2-results-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/ta2-results-database.md -------------------------------------------------------------------------------- /docs/tool-docs/ta3-baseline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/ta3-baseline.md -------------------------------------------------------------------------------- /docs/tool-docs/ta3-test-generator-algorithms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/ta3-test-generator-algorithms.pdf -------------------------------------------------------------------------------- /docs/tool-docs/ta3-test-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/ta3-test-generator.md -------------------------------------------------------------------------------- /docs/tool-docs/ta3-test-harness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/tool-docs/ta3-test-harness.md -------------------------------------------------------------------------------- /docs/user-manuals/CIRCUIT_GENERATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/user-manuals/CIRCUIT_GENERATION.md -------------------------------------------------------------------------------- /docs/user-manuals/CIRCUIT_TEST_EXECUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/user-manuals/CIRCUIT_TEST_EXECUTION.md -------------------------------------------------------------------------------- /docs/user-manuals/DB_GENERATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/user-manuals/DB_GENERATION.md -------------------------------------------------------------------------------- /docs/user-manuals/DB_TEST_EXECUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/user-manuals/DB_TEST_EXECUTION.md -------------------------------------------------------------------------------- /docs/user-manuals/REPORT_GENERATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/docs/user-manuals/REPORT_GENERATION.md -------------------------------------------------------------------------------- /java/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/SConscript -------------------------------------------------------------------------------- /java/checkstyle/spar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/checkstyle/spar.xml -------------------------------------------------------------------------------- /java/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /java/jars/PublishingBroker.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/PublishingBroker.mf -------------------------------------------------------------------------------- /java/jars/PublishingServer.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/PublishingServer.mf -------------------------------------------------------------------------------- /java/jars/SubscribingClient.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/SubscribingClient.mf -------------------------------------------------------------------------------- /java/jars/ThirdPartyBroker.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/ThirdPartyBroker.mf -------------------------------------------------------------------------------- /java/jars/third_party/activemq/activemq-all-5.5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/activemq/activemq-all-5.5.1.jar -------------------------------------------------------------------------------- /java/jars/third_party/checkstyle/checkstyle-5.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/checkstyle/checkstyle-5.4.jar -------------------------------------------------------------------------------- /java/jars/third_party/jewelcli/jewelcli-0.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/jewelcli/jewelcli-0.7.6.jar -------------------------------------------------------------------------------- /java/jars/third_party/junit/junit-4.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/junit/junit-4.10.jar -------------------------------------------------------------------------------- /java/jars/third_party/opencsv/opencsv-2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/opencsv/opencsv-2.3.jar -------------------------------------------------------------------------------- /java/jars/third_party/slf4j/slf4j-api-1.5.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/slf4j/slf4j-api-1.5.11.jar -------------------------------------------------------------------------------- /java/jars/third_party/slf4j/slf4j-jdk14-1.5.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/slf4j/slf4j-jdk14-1.5.11.jar -------------------------------------------------------------------------------- /java/jars/third_party/slf4j/slf4j-simple-1.5.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/jars/third_party/slf4j/slf4j-simple-1.5.11.jar -------------------------------------------------------------------------------- /java/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/SConscript -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/common/PrimitiveUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/common/PrimitiveUtils.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/common/SchemaHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/common/SchemaHandler.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/common/SerialExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/common/SerialExecutor.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/common/UnitTester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/common/UnitTester.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/common/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/common/package-info.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/common/test/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/common/test/package-info.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/package-info.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/protocol/ProtocolException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/protocol/ProtocolException.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/protocol/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/protocol/package-info.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/PubSubActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/actors/PubSubActor.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/PublishingActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/actors/PublishingActor.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/PublishingBroker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/actors/PublishingBroker.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/PublishingServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/actors/PublishingServer.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/SubscribingActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/actors/SubscribingActor.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/ThirdPartyBroker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/actors/ThirdPartyBroker.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/actors/package-info.java -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/actors/ta3-baseline.md: -------------------------------------------------------------------------------- 1 | ../../../../../../../../docs/tool-docs/ta3-baseline.md -------------------------------------------------------------------------------- /java/src/edu/mit/ll/spar/ta3/handlers/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/java/src/edu/mit/ll/spar/ta3/handlers/package-info.java -------------------------------------------------------------------------------- /scons_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scons_common.py -------------------------------------------------------------------------------- /scripts-config/common/config/.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/.bash_aliases -------------------------------------------------------------------------------- /scripts-config/common/config/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/.bash_logout -------------------------------------------------------------------------------- /scripts-config/common/config/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/.bashrc -------------------------------------------------------------------------------- /scripts-config/common/config/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/.profile -------------------------------------------------------------------------------- /scripts-config/common/config/.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/.screenrc -------------------------------------------------------------------------------- /scripts-config/common/config/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/.vimrc -------------------------------------------------------------------------------- /scripts-config/common/config/hosts/localhost_only.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/hosts/localhost_only.csv -------------------------------------------------------------------------------- /scripts-config/common/config/tls/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/tls/cacert.pem -------------------------------------------------------------------------------- /scripts-config/common/config/tls/nist-p256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/tls/nist-p256.pem -------------------------------------------------------------------------------- /scripts-config/common/config/tls/server-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/tls/server-cert.pem -------------------------------------------------------------------------------- /scripts-config/common/config/tls/server-key.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/tls/server-key.key -------------------------------------------------------------------------------- /scripts-config/common/config/tls/tls.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/config/tls/tls.README -------------------------------------------------------------------------------- /scripts-config/common/ntp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/ntp/README -------------------------------------------------------------------------------- /scripts-config/common/ntp/ntp.client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/ntp/ntp.client.conf -------------------------------------------------------------------------------- /scripts-config/common/ntp/ntp.server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/ntp/ntp.server.conf -------------------------------------------------------------------------------- /scripts-config/common/ntp/run_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/ntp/run_client.py -------------------------------------------------------------------------------- /scripts-config/common/ntp/run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/ntp/run_server.py -------------------------------------------------------------------------------- /scripts-config/common/remote_runners/pkill-java/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/remote_runners/pkill-java/config.py -------------------------------------------------------------------------------- /scripts-config/common/remote_runners/sudo_bash/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/remote_runners/sudo_bash/config.py -------------------------------------------------------------------------------- /scripts-config/common/scripts/archive_test_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/common/scripts/archive_test_artifacts.sh -------------------------------------------------------------------------------- /scripts-config/ta1/config/METADATA.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/METADATA.README -------------------------------------------------------------------------------- /scripts-config/ta1/config/database_schemas/100Bpr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/database_schemas/100Bpr.csv -------------------------------------------------------------------------------- /scripts-config/ta1/config/event_schemas/MDB_client.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/event_schemas/MDB_client.csv -------------------------------------------------------------------------------- /scripts-config/ta1/config/event_schemas/MDB_server.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/event_schemas/MDB_server.csv -------------------------------------------------------------------------------- /scripts-config/ta1/config/query_schemas/1Brows_100Bpr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/query_schemas/1Brows_100Bpr.csv -------------------------------------------------------------------------------- /scripts-config/ta1/config/query_schemas/1Mrows_100Bpr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/query_schemas/1Mrows_100Bpr.csv -------------------------------------------------------------------------------- /scripts-config/ta1/config/query_schemas/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/query_schemas/test.csv -------------------------------------------------------------------------------- /scripts-config/ta1/config/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/config/stopwords.txt -------------------------------------------------------------------------------- /scripts-config/ta1/scripts/exec_ta1_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/scripts/exec_ta1_test.sh -------------------------------------------------------------------------------- /scripts-config/ta1/scripts/fill_ta1_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/scripts/fill_ta1_db.sh -------------------------------------------------------------------------------- /scripts-config/ta1/scripts/fix_p3_p4_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/scripts/fix_p3_p4_quotes.py -------------------------------------------------------------------------------- /scripts-config/ta1/scripts/full_query_field_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta1/scripts/full_query_field_fix.sh -------------------------------------------------------------------------------- /scripts-config/ta3/config/METADATA.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/config/METADATA.README -------------------------------------------------------------------------------- /scripts-config/ta3/config/ks_ts_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/config/ks_ts_generator.sh -------------------------------------------------------------------------------- /scripts-config/ta3/config/metadata_schema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/config/metadata_schema.csv -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/README -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/YYY_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/YYY_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/acs_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/acs_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/arg_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/arg_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/b3l_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/b3l_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/b3r_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/b3r_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/bbn_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/bbn_cleanup.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/bbn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/bbn_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/bll_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/bll_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/remote-runner-scripts/blr_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/remote-runner-scripts/blr_config.py -------------------------------------------------------------------------------- /scripts-config/ta3/scripts/ThirdPartyBroker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/scripts/ThirdPartyBroker.sh -------------------------------------------------------------------------------- /scripts-config/ta3/test-scripts/sample-mixed/sample-mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/scripts-config/ta3/test-scripts/sample-mixed/sample-mixed -------------------------------------------------------------------------------- /scripts-config/ta3/test-scripts/sample-mixed/set-0-sh-0-update-subscriptions: -------------------------------------------------------------------------------- 1 | SubscribeScript 2 | 1 1 language = 'MALAY' 3 | -------------------------------------------------------------------------------- /scripts-config/ta3/test-scripts/sample-mixed/set-1-sh-0-update-subscriptions: -------------------------------------------------------------------------------- 1 | SubscribeScript 2 | 2 2 lname = 'ZAVALA' 3 | -------------------------------------------------------------------------------- /scripts-config/ta3/test-scripts/sample-mixed/set-2-sh-0-update-subscriptions: -------------------------------------------------------------------------------- 1 | SubscribeScript 2 | 3 3 fname = 'JEANNA' 3 | -------------------------------------------------------------------------------- /setup/apt-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/apt-install.sh -------------------------------------------------------------------------------- /setup/base-virtualenv-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/base-virtualenv-setup.sh -------------------------------------------------------------------------------- /setup/mariadb-server-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/mariadb-server-setup.sh -------------------------------------------------------------------------------- /setup/mariadb_cf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/mariadb_cf/README.md -------------------------------------------------------------------------------- /setup/mariadb_cf/my.cnf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/mariadb_cf/my.cnf.default -------------------------------------------------------------------------------- /setup/mariadb_cf/my.cnf.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/mariadb_cf/my.cnf.diff -------------------------------------------------------------------------------- /setup/mariadb_cf/my.cnf.spar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/mariadb_cf/my.cnf.spar -------------------------------------------------------------------------------- /setup/sparta-virtualenv-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/sparta-virtualenv-setup.sh -------------------------------------------------------------------------------- /setup/ubuntu-virtualenv-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/setup/ubuntu-virtualenv-setup.sh -------------------------------------------------------------------------------- /spar_python/.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | 3 | query_dist.p 4 | range_result.txt 5 | -------------------------------------------------------------------------------- /spar_python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/README.md -------------------------------------------------------------------------------- /spar_python/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/SConscript -------------------------------------------------------------------------------- /spar_python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/analytics/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/analytics/common/log_parser_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/common/log_parser_util.py -------------------------------------------------------------------------------- /spar_python/analytics/common/log_parser_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/common/log_parser_util_test.py -------------------------------------------------------------------------------- /spar_python/analytics/distribution_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/distribution_compare.py -------------------------------------------------------------------------------- /spar_python/analytics/distribution_compare_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/distribution_compare_test.py -------------------------------------------------------------------------------- /spar_python/analytics/single_percentile_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/single_percentile_comparator.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/analytics/ta1/call_remote_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/call_remote_parser.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/common.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/correctness.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/ground_truth_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/ground_truth_to_db.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/lmregress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/lmregress.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/lmrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/lmrtest.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/parse_client_harness_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/parse_client_harness_log.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/parse_server_harness_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/parse_server_harness_log.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/query_runner_log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/query_runner_log_parser.py -------------------------------------------------------------------------------- /spar_python/analytics/ta1/result_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta1/result_set.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/analytics/ta2/aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/aggregator.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/circuit_parameters/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/circuit_parameters/main.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/circuit_parameters/reparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/circuit_parameters/reparse.sh -------------------------------------------------------------------------------- /spar_python/analytics/ta2/log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/log_parser.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/main.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/parameter_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/parameter_parser.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/parse_circuit_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/parse_circuit_log.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/parse_circuit_log_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/parse_circuit_log_test.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/parser_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/parser_factory.py -------------------------------------------------------------------------------- /spar_python/analytics/ta2/script_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta2/script_parser.py -------------------------------------------------------------------------------- /spar_python/analytics/ta3/generate_test_publications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta3/generate_test_publications.py -------------------------------------------------------------------------------- /spar_python/analytics/ta3/generate_test_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta3/generate_test_subscriptions.py -------------------------------------------------------------------------------- /spar_python/analytics/ta3/test_info_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/analytics/ta3/test_info_parser.py -------------------------------------------------------------------------------- /spar_python/baseline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/baseline/create_alarms_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/baseline/create_alarms_join.py -------------------------------------------------------------------------------- /spar_python/baseline/create_keywords_stems_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/baseline/create_keywords_stems_join.py -------------------------------------------------------------------------------- /spar_python/baseline/create_notes_join_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/baseline/create_notes_join_tables.py -------------------------------------------------------------------------------- /spar_python/baseline/create_xml_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/baseline/create_xml_join.py -------------------------------------------------------------------------------- /spar_python/baseline/default_alarm_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/baseline/default_alarm_words.py -------------------------------------------------------------------------------- /spar_python/baseline/default_stopwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/baseline/default_stopwords.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/circuit_generation/circuit_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/generate_all_phase2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/generate_all_phase2.sh -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_batch.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_batch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_batch_test.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_circuit.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_circuit_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_circuit_object.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_circuit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_circuit_test.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_gate.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_gate_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_gate_add.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_gate_add_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_gate_add_const.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_gate_mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_gate_mul.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_gate_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_gate_rotate.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_gate_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_gate_select.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_gate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_gate_test.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_generate.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_wire.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/ibm/ibm_wire_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/ibm/ibm_wire_test.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/stealth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/circuit_generation/stealth/stealth_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/stealth/stealth_gate.py -------------------------------------------------------------------------------- /spar_python/circuit_generation/stealth/stealth_wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/circuit_generation/stealth/stealth_wire.py -------------------------------------------------------------------------------- /spar_python/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/common/aggregators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/common/aggregators/base_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/aggregators/base_aggregator.py -------------------------------------------------------------------------------- /spar_python/common/aggregators/benchmark_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/aggregators/benchmark_aggregator.py -------------------------------------------------------------------------------- /spar_python/common/aggregators/compound_aggregators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/aggregators/compound_aggregators.py -------------------------------------------------------------------------------- /spar_python/common/aggregators/counts_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/aggregators/counts_aggregator.py -------------------------------------------------------------------------------- /spar_python/common/aggregators/line_raw_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/aggregators/line_raw_aggregator.py -------------------------------------------------------------------------------- /spar_python/common/aggregators/query_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/aggregators/query_aggregator.py -------------------------------------------------------------------------------- /spar_python/common/array_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/array_view.py -------------------------------------------------------------------------------- /spar_python/common/array_view_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/array_view_test.py -------------------------------------------------------------------------------- /spar_python/common/commented_file_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/commented_file_iterator.py -------------------------------------------------------------------------------- /spar_python/common/commented_file_iterator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/commented_file_iterator_test.py -------------------------------------------------------------------------------- /spar_python/common/contingency_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/contingency_table.py -------------------------------------------------------------------------------- /spar_python/common/contingency_table_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/contingency_table_test.py -------------------------------------------------------------------------------- /spar_python/common/default_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/default_dict.py -------------------------------------------------------------------------------- /spar_python/common/default_dict_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/default_dict_test.py -------------------------------------------------------------------------------- /spar_python/common/distributions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/.gitignore -------------------------------------------------------------------------------- /spar_python/common/distributions/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/SConscript -------------------------------------------------------------------------------- /spar_python/common/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/common/distributions/alarm_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/alarm_words.txt -------------------------------------------------------------------------------- /spar_python/common/distributions/base_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/base_distributions.py -------------------------------------------------------------------------------- /spar_python/common/distributions/generated_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/generated_text.py -------------------------------------------------------------------------------- /spar_python/common/distributions/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/setup.py -------------------------------------------------------------------------------- /spar_python/common/distributions/text_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/text_distribution.py -------------------------------------------------------------------------------- /spar_python/common/distributions/text_generator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/text_generator.pyx -------------------------------------------------------------------------------- /spar_python/common/distributions/xml_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/xml_generator.py -------------------------------------------------------------------------------- /spar_python/common/distributions/xml_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/distributions/xml_generator_test.py -------------------------------------------------------------------------------- /spar_python/common/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/enum.py -------------------------------------------------------------------------------- /spar_python/common/enum_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/enum_test.py -------------------------------------------------------------------------------- /spar_python/common/file_handle_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/file_handle_object.py -------------------------------------------------------------------------------- /spar_python/common/memo_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/memo_table.py -------------------------------------------------------------------------------- /spar_python/common/memo_table_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/memo_table_test.py -------------------------------------------------------------------------------- /spar_python/common/pickle_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/pickle_iter.py -------------------------------------------------------------------------------- /spar_python/common/pickle_iter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/pickle_iter_test.py -------------------------------------------------------------------------------- /spar_python/common/simple_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/simple_condition.py -------------------------------------------------------------------------------- /spar_python/common/simple_condition_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/simple_condition_test.py -------------------------------------------------------------------------------- /spar_python/common/spar_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/spar_random.py -------------------------------------------------------------------------------- /spar_python/common/spar_random_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/spar_random_test.py -------------------------------------------------------------------------------- /spar_python/common/spar_stemming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/spar_stemming.py -------------------------------------------------------------------------------- /spar_python/common/spar_stemming_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/spar_stemming_tests.py -------------------------------------------------------------------------------- /spar_python/common/symmetric_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/symmetric_dict.py -------------------------------------------------------------------------------- /spar_python/common/symmetric_dict_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/symmetric_dict_test.py -------------------------------------------------------------------------------- /spar_python/common/test_file_handle_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/test_file_handle_object.py -------------------------------------------------------------------------------- /spar_python/common/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/timer.py -------------------------------------------------------------------------------- /spar_python/common/unique_id_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/unique_id_assigner.py -------------------------------------------------------------------------------- /spar_python/common/unique_id_assigner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/common/unique_id_assigner_test.py -------------------------------------------------------------------------------- /spar_python/data_generation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/.gitignore -------------------------------------------------------------------------------- /spar_python/data_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/data_generation/data_generation.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/data_generation.README -------------------------------------------------------------------------------- /spar_python/data_generation/data_generator_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/data_generator_engine.py -------------------------------------------------------------------------------- /spar_python/data_generation/file_iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/file_iterators.py -------------------------------------------------------------------------------- /spar_python/data_generation/file_iterators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/file_iterators_test.py -------------------------------------------------------------------------------- /spar_python/data_generation/generated_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/generated_row.py -------------------------------------------------------------------------------- /spar_python/data_generation/generated_row_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/generated_row_test.py -------------------------------------------------------------------------------- /spar_python/data_generation/generator_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/generator_workers.py -------------------------------------------------------------------------------- /spar_python/data_generation/generator_workers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/generator_workers_test.py -------------------------------------------------------------------------------- /spar_python/data_generation/learn_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/learn_distributions.py -------------------------------------------------------------------------------- /spar_python/data_generation/learning/.gitignore: -------------------------------------------------------------------------------- 1 | data_dir/ -------------------------------------------------------------------------------- /spar_python/data_generation/learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/data_generation/learning/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/learning/get_data.py -------------------------------------------------------------------------------- /spar_python/data_generation/learning/pums_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/learning/pums_variables.py -------------------------------------------------------------------------------- /spar_python/data_generation/learning/url_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/learning/url_dict.py -------------------------------------------------------------------------------- /spar_python/data_generation/output_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/output_ordering.py -------------------------------------------------------------------------------- /spar_python/data_generation/progress_reporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/progress_reporters.py -------------------------------------------------------------------------------- /spar_python/data_generation/progress_reporters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/progress_reporters_test.py -------------------------------------------------------------------------------- /spar_python/data_generation/sanitization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/sanitization.py -------------------------------------------------------------------------------- /spar_python/data_generation/sanitization_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/sanitization_test.py -------------------------------------------------------------------------------- /spar_python/data_generation/spar_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/spar_variables.py -------------------------------------------------------------------------------- /spar_python/data_generation/spar_variables_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/spar_variables_test.py -------------------------------------------------------------------------------- /spar_python/data_generation/test_schema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/data_generation/test_schema.csv -------------------------------------------------------------------------------- /spar_python/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/external/porterstemmer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/external/porterstemmer/README.txt -------------------------------------------------------------------------------- /spar_python/external/porterstemmer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/external/porterstemmer/stemmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/external/porterstemmer/stemmer.py -------------------------------------------------------------------------------- /spar_python/optimization_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/optimization_notes.txt -------------------------------------------------------------------------------- /spar_python/perf_monitoring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/perf_monitoring/cpu_log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/cpu_log_parser.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/cpu_log_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/cpu_log_parser_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/create_perf_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/create_perf_graphs.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/create_perf_graphs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/create_perf_graphs_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/disk_log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/disk_log_parser.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/disk_log_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/disk_log_parser_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/file_utils.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/file_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/file_utils_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/network_log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/network_log_parser.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/network_log_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/network_log_parser_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/pcap_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/pcap_parser.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/pcap_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/pcap_parser_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/perf_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/perf_db.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/perf_db_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/perf_db_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/perf_logs_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/perf_logs_to_db.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/perf_monitoring.md: -------------------------------------------------------------------------------- 1 | ../../docs/tool-docs/perf_monitoring.md -------------------------------------------------------------------------------- /spar_python/perf_monitoring/ram_log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/ram_log_parser.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/ram_log_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/ram_log_parser_test.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/start_perf_monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/start_perf_monitors.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/stop_perf_monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/stop_perf_monitors.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/tcpdump_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/tcpdump_parser.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/test.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/test.pcap -------------------------------------------------------------------------------- /spar_python/perf_monitoring/test_ip_mappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/test_ip_mappings.txt -------------------------------------------------------------------------------- /spar_python/perf_monitoring/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/time_utils.py -------------------------------------------------------------------------------- /spar_python/perf_monitoring/time_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/perf_monitoring/time_utils_test.py -------------------------------------------------------------------------------- /spar_python/query_generation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/.gitignore -------------------------------------------------------------------------------- /spar_python/query_generation/BOQs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/query_generation/BOQs/query_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/BOQs/query_batch.py -------------------------------------------------------------------------------- /spar_python/query_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/query_generation/check_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/check_schema.py -------------------------------------------------------------------------------- /spar_python/query_generation/generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/query_generation/generators/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/query_generation/learn_query_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/learn_query_types.py -------------------------------------------------------------------------------- /spar_python/query_generation/learn_query_types_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/learn_query_types_test.py -------------------------------------------------------------------------------- /spar_python/query_generation/pickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/pickler.py -------------------------------------------------------------------------------- /spar_python/query_generation/pre_test_generation.md: -------------------------------------------------------------------------------- 1 | ../../docs/tool-docs/pre_test_generation.md -------------------------------------------------------------------------------- /spar_python/query_generation/pre_test_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/pre_test_generation.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_bounds.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_bounds_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_bounds_test.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_generation.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_generation.README -------------------------------------------------------------------------------- /spar_python/query_generation/query_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_generation.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_generation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_generation_test.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_handler.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_handler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_handler_test.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_ids.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_ids_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_ids_test.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_result.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_result_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_result_test.py -------------------------------------------------------------------------------- /spar_python/query_generation/query_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/query_generation/query_schema.py -------------------------------------------------------------------------------- /spar_python/remote_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/remote_runner/config_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/config_classes.py -------------------------------------------------------------------------------- /spar_python/remote_runner/config_classes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/config_classes_test.py -------------------------------------------------------------------------------- /spar_python/remote_runner/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/config_util.py -------------------------------------------------------------------------------- /spar_python/remote_runner/config_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/config_util_test.py -------------------------------------------------------------------------------- /spar_python/remote_runner/example/arg_muddler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/example/arg_muddler.py -------------------------------------------------------------------------------- /spar_python/remote_runner/example/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/example/config.py -------------------------------------------------------------------------------- /spar_python/remote_runner/example/dir1/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/example/dir1/file1 -------------------------------------------------------------------------------- /spar_python/remote_runner/example/dir1/file2: -------------------------------------------------------------------------------- 1 | This is the second file. 2 | -------------------------------------------------------------------------------- /spar_python/remote_runner/example/dir1/sub1/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/example/dir1/sub1/file1 -------------------------------------------------------------------------------- /spar_python/remote_runner/example/dir1/sub2/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/example/dir1/sub2/file1 -------------------------------------------------------------------------------- /spar_python/remote_runner/example/dir1/sub2/file2: -------------------------------------------------------------------------------- 1 | This is the second file in sub2. 2 | 3 | -------------------------------------------------------------------------------- /spar_python/remote_runner/example/extra_args_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/example/extra_args_parser.py -------------------------------------------------------------------------------- /spar_python/remote_runner/example/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/example/script.sh -------------------------------------------------------------------------------- /spar_python/remote_runner/remote_runner.md: -------------------------------------------------------------------------------- 1 | ../../docs/tool-docs/remote_runner.md -------------------------------------------------------------------------------- /spar_python/remote_runner/remote_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/remote_runner.py -------------------------------------------------------------------------------- /spar_python/remote_runner/remote_runner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/remote_runner_test.py -------------------------------------------------------------------------------- /spar_python/remote_runner/ssh_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/ssh_manager.py -------------------------------------------------------------------------------- /spar_python/remote_runner/ssh_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/remote_runner/ssh_thread.py -------------------------------------------------------------------------------- /spar_python/report_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/report_generation/a_base_ta2_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/a_base_ta2_config.py -------------------------------------------------------------------------------- /spar_python/report_generation/a_mdb_ta1_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/a_mdb_ta1_config.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/report_generation/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/config.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/graphing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/graphing.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/graphing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/graphing_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/latex_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/latex_classes.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/percentiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/percentiles.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/regression.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/results_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/results_schema.py -------------------------------------------------------------------------------- /spar_python/report_generation/common/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/common/section.py -------------------------------------------------------------------------------- /spar_python/report_generation/generate_report.md: -------------------------------------------------------------------------------- 1 | ../../docs/user-manuals/REPORT_GENERATION.md -------------------------------------------------------------------------------- /spar_python/report_generation/generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/generate_report.py -------------------------------------------------------------------------------- /spar_python/report_generation/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_config.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_config_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_database.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_database_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_database_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_schema.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_schema_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_section.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_section_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_section_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta1/ta1_test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta1/ta1_test_database.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/ta2_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta2/ta2_config.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/ta2_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta2/ta2_config_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/ta2_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta2/ta2_database.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/ta2_database_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta2/ta2_database_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/ta2_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta2/ta2_schema.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/ta2_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta2/ta2_section.py -------------------------------------------------------------------------------- /spar_python/report_generation/ta2/ta2_section_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/ta2/ta2_section_test.py -------------------------------------------------------------------------------- /spar_python/report_generation/templates/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/report_generation/templates/report.txt -------------------------------------------------------------------------------- /spar_python/requirements-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/requirements-0.txt -------------------------------------------------------------------------------- /spar_python/requirements-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/requirements-1.txt -------------------------------------------------------------------------------- /spar_python/sql_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/sql_generation/sql_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/sql_generation/sql_generator.py -------------------------------------------------------------------------------- /spar_python/test_generation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/README -------------------------------------------------------------------------------- /spar_python/test_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spar_python/test_generation/create_atomic_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/create_atomic_scripts.py -------------------------------------------------------------------------------- /spar_python/test_generation/create_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/create_scripts.py -------------------------------------------------------------------------------- /spar_python/test_generation/create_scripts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/create_scripts_test.py -------------------------------------------------------------------------------- /spar_python/test_generation/modification_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/modification_generator.py -------------------------------------------------------------------------------- /spar_python/test_generation/performer_timing_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/performer_timing_data.csv -------------------------------------------------------------------------------- /spar_python/test_generation/query_file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/query_file_handler.py -------------------------------------------------------------------------------- /spar_python/test_generation/query_file_handler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/query_file_handler_test.py -------------------------------------------------------------------------------- /spar_python/test_generation/read_lineraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/read_lineraw.py -------------------------------------------------------------------------------- /spar_python/test_generation/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/test_utils.py -------------------------------------------------------------------------------- /spar_python/test_generation/test_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-ll/SPARTA/HEAD/spar_python/test_generation/test_utils_test.py --------------------------------------------------------------------------------