├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── artifacts ├── README.md ├── csfp-base │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_csfp_base_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── csfp-base.cpp ├── csfp-mcap │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_csfp_mcap_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── csfp-mcap.cpp ├── csfp-mpow │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_csfp_mpow_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── csfp-mpow.cpp ├── csfp-mprc │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_csfp_mprc_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── csfp-mprc.cpp ├── cstp-base │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_cstp_base_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── cstp-base.cpp ├── cstp-mcap │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_cstp_mcap_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── cstp-mcap.cpp ├── cstp-mpow │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_cstp_mpow_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── cstp-mpow.cpp ├── cstp-mprc │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_cstp_mprc_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── cstp-mprc.cpp ├── fsfp-base │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fsfp_base_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fsfp-base.cpp ├── fsfp-mcap │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fsfp_mcap_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fsfp-mcap.cpp ├── fsfp-mpow │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fsfp_mpow_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fsfp-mpow.cpp ├── fsfp-mprc │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fsfp_mprc_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fsfp-mprc.cpp ├── fstp-base │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fstp_base_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fstp-base.cpp ├── fstp-mcap │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fstp_mcap_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fstp-mcap.cpp ├── fstp-mpow │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fstp_mpow_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fstp-mpow.cpp ├── fstp-mprc │ ├── README.md │ ├── build │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── run_fstp_mprc_sims.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── fstp-mprc.cpp ├── sim-common │ ├── README.md │ ├── dt │ │ └── date-time.dat │ ├── sat │ │ ├── cs-planet.dat │ │ ├── cs-spacex.dat │ │ ├── cs-spire.dat │ │ ├── fs-planet.dat │ │ ├── fs-spacex.dat │ │ ├── fs-spire.dat │ │ ├── os-planet.dat │ │ ├── os-spacex.dat │ │ ├── os-spire.dat │ │ ├── planet.tle │ │ ├── spacex.tle │ │ └── spire.tle │ ├── sensor │ │ └── sensor.dat │ └── unis │ │ └── unis.dat ├── sim-cs │ ├── README.md │ ├── build │ │ └── README.md │ ├── data │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ ├── generate_data_directories.sh │ │ ├── populate_gnd_ring.py │ │ ├── populate_gnd_unis.py │ │ ├── populate_rx.py │ │ ├── populate_tx.py │ │ ├── prep_cs_scenarios.sh │ │ └── run_cs_scenarios.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── close-spaced.cpp ├── sim-fs │ ├── README.md │ ├── build │ │ └── README.md │ ├── data │ │ └── README.md │ ├── logs │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ ├── generate_data_directories.sh │ │ ├── populate_gnd_ring.py │ │ ├── populate_gnd_unis.py │ │ ├── populate_rx.py │ │ ├── populate_tx.py │ │ ├── prep_fs_scenarios.sh │ │ └── run_fs_scenarios.sh │ └── source │ │ ├── CMakeLists.txt │ │ └── frame-spaced.cpp └── sim-os │ ├── README.md │ ├── build │ └── README.md │ ├── data │ └── README.md │ ├── logs │ └── README.md │ ├── scripts │ ├── README.md │ ├── generate_data_directories.sh │ ├── populate_gnd_ring.py │ ├── populate_gnd_unis.py │ ├── populate_rx.py │ ├── populate_tx.py │ ├── prep_os_scenarios.sh │ └── run_os_scenarios.sh │ └── source │ ├── CMakeLists.txt │ └── orbit-spaced.cpp ├── plots └── README.md ├── scripts ├── README.md ├── collate_downlink_deficit.py ├── csfp_coverage.py ├── csfp_latency.py ├── cstp_coverage.py ├── cstp_latency.py ├── fsfp_coverage.py ├── fsfp_latency.py ├── fstp_coverage.py ├── fstp_latency.py ├── generate_f6_plots.sh ├── generate_f7_plots.sh ├── generate_f8_plots.sh ├── generate_plots.sh ├── plot_f6a.py ├── plot_f6b.py ├── plot_f6c.py ├── plot_f7a.py ├── plot_f7b.py ├── plot_f7c.py ├── plot_f7d.py ├── plot_f8a.py ├── plot_f8b.py ├── plot_f8c.py ├── plot_f8d.py ├── process_f6_logs.sh ├── process_f7_f8_logs.sh ├── process_logs.sh ├── run_csfp_sims.sh ├── run_cstp_sims.sh ├── run_fsfp_sims.sh ├── run_fstp_sims.sh ├── run_sims_cs.sh ├── run_sims_fs.sh ├── run_sims_os.sh ├── setup_dependencies.sh └── setup_py_venv.sh └── software ├── README.md ├── comsim ├── README.md ├── channel-type │ ├── README.md │ └── include │ │ └── ChannelType.hpp ├── channel │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── Channel.hpp │ ├── source │ │ └── Channel.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-channel.cpp ├── constants │ ├── README.md │ └── include │ │ └── constants.hpp ├── date-time │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── DateTime.hpp │ ├── source │ │ └── DateTime.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-date-time.cpp ├── edge │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── Edge.hpp │ ├── source │ │ └── Edge.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-edge.cpp ├── ground-station │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── GroundStation.hpp │ ├── source │ │ └── GroundStation.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-ground-station.cpp ├── isim │ ├── README.md │ └── include │ │ └── ISim.hpp ├── log-level │ ├── README.md │ └── include │ │ └── LogLevel.hpp ├── log │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── Log.hpp │ ├── source │ │ └── Log.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-log.cpp ├── receive │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── Receive.hpp │ ├── source │ │ └── Receive.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-receive.cpp ├── satellite │ ├── README.md │ ├── build │ │ └── README.md │ ├── data │ │ ├── README.md │ │ └── test.tle │ ├── include │ │ └── Satellite.hpp │ ├── source │ │ └── Satellite.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-satellite.cpp ├── sensor │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── Sensor.hpp │ ├── source │ │ └── Sensor.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-sensor.cpp ├── transmit │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── Transmit.hpp │ ├── source │ │ └── Transmit.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-transmit.cpp ├── utilities │ ├── README.md │ ├── build │ │ └── README.md │ ├── include │ │ └── utilities.hpp │ ├── source │ │ └── utilities.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── test-utilities.cpp └── vertex │ ├── README.md │ ├── build │ └── README.md │ ├── include │ └── Vertex.hpp │ ├── source │ └── Vertex.cpp │ └── test │ ├── CMakeLists.txt │ └── test-vertex.cpp └── satsim ├── README.md ├── capacitor ├── README.md ├── build │ └── README.md ├── include │ └── Capacitor.hpp ├── source │ └── Capacitor.cpp └── test │ ├── CMakeLists.txt │ └── test-capacitor.cpp ├── chameleon-imager ├── README.md ├── build │ └── README.md ├── include │ └── ChameleonImager.hpp ├── source │ └── ChameleonImager.cpp └── test │ ├── CMakeLists.txt │ └── test-chameleon-imager.cpp ├── eh-satellite ├── README.md ├── build │ └── README.md ├── include │ └── EHSatellite.hpp ├── source │ └── EHSatellite.cpp └── test │ ├── CMakeLists.txt │ └── test-eh-satellite.cpp ├── eh-system ├── README.md ├── build │ └── README.md ├── include │ └── EHSystem.hpp ├── source │ └── EHSystem.cpp └── test │ ├── CMakeLists.txt │ └── test-eh-system.cpp ├── energy-consumer ├── README.md ├── build │ └── README.md ├── include │ └── EnergyConsumer.hpp ├── source │ └── EnergyConsumer.cpp └── test │ ├── CMakeLists.txt │ └── test-energy-consumer.cpp ├── energy-harvester ├── README.md ├── build │ └── README.md ├── include │ └── EnergyHarvester.hpp ├── source │ └── EnergyHarvester.cpp └── test │ ├── CMakeLists.txt │ └── test-energy-harvester.cpp ├── energy-storage ├── README.md ├── build │ └── README.md ├── include │ └── EnergyStorage.hpp ├── source │ └── EnergyStorage.cpp └── test │ ├── CMakeLists.txt │ └── test-energy-storage.cpp ├── ilog ├── README.md └── include │ └── ILog.hpp ├── isim ├── README.md └── include │ └── ISim.hpp ├── iwork ├── README.md └── include │ └── IWork.hpp ├── jetson-tx2 ├── README.md ├── build │ └── README.md ├── include │ └── JetsonTX2.hpp ├── source │ └── JetsonTX2.cpp └── test │ ├── CMakeLists.txt │ └── test-jetson-tx2.cpp ├── jetson-tx4 ├── README.md ├── build │ └── README.md ├── include │ └── JetsonTX4.hpp ├── source │ └── JetsonTX4.cpp └── test │ ├── CMakeLists.txt │ └── test-jetson-tx4.cpp ├── job ├── README.md ├── build │ └── README.md ├── include │ └── Job.hpp ├── source │ └── Job.cpp └── test │ ├── CMakeLists.txt │ └── test-job.cpp ├── logger ├── README.md ├── build │ └── README.md ├── include │ └── Logger.hpp ├── source │ └── Logger.cpp └── test │ ├── CMakeLists.txt │ └── test-logger.cpp ├── mai-adacs ├── README.md ├── build │ └── README.md ├── include │ └── MAIAdacs.hpp ├── source │ └── MAIAdacs.cpp └── test │ ├── CMakeLists.txt │ └── test-mai-adacs.cpp ├── orbit ├── README.md ├── build │ └── README.md ├── include │ └── Orbit.hpp ├── source │ └── Orbit.cpp └── test │ ├── CMakeLists.txt │ └── test-orbit.cpp ├── satellite ├── README.md ├── build │ └── README.md ├── include │ └── Satellite.hpp ├── source │ └── Satellite.cpp └── test │ ├── CMakeLists.txt │ └── test-satellite.cpp ├── simple-solar-cell ├── README.md ├── build │ └── README.md ├── include │ └── SimpleSolarCell.hpp ├── source │ └── SimpleSolarCell.cpp └── test │ ├── CMakeLists.txt │ └── test-simple-solar-cell.cpp └── xlink ├── README.md ├── build └── README.md ├── include └── XLink.hpp ├── source └── XLink.cpp └── test ├── CMakeLists.txt └── test-xlink.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/README.md -------------------------------------------------------------------------------- /artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/README.md -------------------------------------------------------------------------------- /artifacts/csfp-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-base/README.md -------------------------------------------------------------------------------- /artifacts/csfp-base/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-base/build/README.md -------------------------------------------------------------------------------- /artifacts/csfp-base/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-base/logs/README.md -------------------------------------------------------------------------------- /artifacts/csfp-base/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-base/scripts/README.md -------------------------------------------------------------------------------- /artifacts/csfp-base/scripts/run_csfp_base_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-base/scripts/run_csfp_base_sims.sh -------------------------------------------------------------------------------- /artifacts/csfp-base/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-base/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/csfp-base/source/csfp-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-base/source/csfp-base.cpp -------------------------------------------------------------------------------- /artifacts/csfp-mcap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mcap/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mcap/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mcap/build/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mcap/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mcap/logs/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mcap/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mcap/scripts/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mcap/scripts/run_csfp_mcap_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mcap/scripts/run_csfp_mcap_sims.sh -------------------------------------------------------------------------------- /artifacts/csfp-mcap/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mcap/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/csfp-mcap/source/csfp-mcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mcap/source/csfp-mcap.cpp -------------------------------------------------------------------------------- /artifacts/csfp-mpow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mpow/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mpow/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mpow/build/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mpow/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mpow/logs/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mpow/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mpow/scripts/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mpow/scripts/run_csfp_mpow_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mpow/scripts/run_csfp_mpow_sims.sh -------------------------------------------------------------------------------- /artifacts/csfp-mpow/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mpow/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/csfp-mpow/source/csfp-mpow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mpow/source/csfp-mpow.cpp -------------------------------------------------------------------------------- /artifacts/csfp-mprc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mprc/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mprc/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mprc/build/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mprc/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mprc/logs/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mprc/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mprc/scripts/README.md -------------------------------------------------------------------------------- /artifacts/csfp-mprc/scripts/run_csfp_mprc_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mprc/scripts/run_csfp_mprc_sims.sh -------------------------------------------------------------------------------- /artifacts/csfp-mprc/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mprc/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/csfp-mprc/source/csfp-mprc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/csfp-mprc/source/csfp-mprc.cpp -------------------------------------------------------------------------------- /artifacts/cstp-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-base/README.md -------------------------------------------------------------------------------- /artifacts/cstp-base/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-base/build/README.md -------------------------------------------------------------------------------- /artifacts/cstp-base/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-base/logs/README.md -------------------------------------------------------------------------------- /artifacts/cstp-base/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-base/scripts/README.md -------------------------------------------------------------------------------- /artifacts/cstp-base/scripts/run_cstp_base_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-base/scripts/run_cstp_base_sims.sh -------------------------------------------------------------------------------- /artifacts/cstp-base/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-base/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/cstp-base/source/cstp-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-base/source/cstp-base.cpp -------------------------------------------------------------------------------- /artifacts/cstp-mcap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mcap/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mcap/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mcap/build/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mcap/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mcap/logs/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mcap/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mcap/scripts/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mcap/scripts/run_cstp_mcap_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mcap/scripts/run_cstp_mcap_sims.sh -------------------------------------------------------------------------------- /artifacts/cstp-mcap/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mcap/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/cstp-mcap/source/cstp-mcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mcap/source/cstp-mcap.cpp -------------------------------------------------------------------------------- /artifacts/cstp-mpow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mpow/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mpow/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mpow/build/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mpow/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mpow/logs/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mpow/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mpow/scripts/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mpow/scripts/run_cstp_mpow_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mpow/scripts/run_cstp_mpow_sims.sh -------------------------------------------------------------------------------- /artifacts/cstp-mpow/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mpow/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/cstp-mpow/source/cstp-mpow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mpow/source/cstp-mpow.cpp -------------------------------------------------------------------------------- /artifacts/cstp-mprc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mprc/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mprc/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mprc/build/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mprc/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mprc/logs/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mprc/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mprc/scripts/README.md -------------------------------------------------------------------------------- /artifacts/cstp-mprc/scripts/run_cstp_mprc_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mprc/scripts/run_cstp_mprc_sims.sh -------------------------------------------------------------------------------- /artifacts/cstp-mprc/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mprc/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/cstp-mprc/source/cstp-mprc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/cstp-mprc/source/cstp-mprc.cpp -------------------------------------------------------------------------------- /artifacts/fsfp-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-base/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-base/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-base/build/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-base/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-base/logs/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-base/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-base/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-base/scripts/run_fsfp_base_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-base/scripts/run_fsfp_base_sims.sh -------------------------------------------------------------------------------- /artifacts/fsfp-base/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-base/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fsfp-base/source/fsfp-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-base/source/fsfp-base.cpp -------------------------------------------------------------------------------- /artifacts/fsfp-mcap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mcap/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mcap/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mcap/build/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mcap/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mcap/logs/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mcap/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mcap/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mcap/scripts/run_fsfp_mcap_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mcap/scripts/run_fsfp_mcap_sims.sh -------------------------------------------------------------------------------- /artifacts/fsfp-mcap/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mcap/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fsfp-mcap/source/fsfp-mcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mcap/source/fsfp-mcap.cpp -------------------------------------------------------------------------------- /artifacts/fsfp-mpow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mpow/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mpow/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mpow/build/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mpow/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mpow/logs/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mpow/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mpow/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mpow/scripts/run_fsfp_mpow_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mpow/scripts/run_fsfp_mpow_sims.sh -------------------------------------------------------------------------------- /artifacts/fsfp-mpow/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mpow/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fsfp-mpow/source/fsfp-mpow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mpow/source/fsfp-mpow.cpp -------------------------------------------------------------------------------- /artifacts/fsfp-mprc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mprc/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mprc/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mprc/build/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mprc/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mprc/logs/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mprc/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mprc/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fsfp-mprc/scripts/run_fsfp_mprc_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mprc/scripts/run_fsfp_mprc_sims.sh -------------------------------------------------------------------------------- /artifacts/fsfp-mprc/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mprc/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fsfp-mprc/source/fsfp-mprc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fsfp-mprc/source/fsfp-mprc.cpp -------------------------------------------------------------------------------- /artifacts/fstp-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-base/README.md -------------------------------------------------------------------------------- /artifacts/fstp-base/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-base/build/README.md -------------------------------------------------------------------------------- /artifacts/fstp-base/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-base/logs/README.md -------------------------------------------------------------------------------- /artifacts/fstp-base/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-base/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fstp-base/scripts/run_fstp_base_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-base/scripts/run_fstp_base_sims.sh -------------------------------------------------------------------------------- /artifacts/fstp-base/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-base/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fstp-base/source/fstp-base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-base/source/fstp-base.cpp -------------------------------------------------------------------------------- /artifacts/fstp-mcap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mcap/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mcap/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mcap/build/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mcap/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mcap/logs/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mcap/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mcap/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mcap/scripts/run_fstp_mcap_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mcap/scripts/run_fstp_mcap_sims.sh -------------------------------------------------------------------------------- /artifacts/fstp-mcap/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mcap/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fstp-mcap/source/fstp-mcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mcap/source/fstp-mcap.cpp -------------------------------------------------------------------------------- /artifacts/fstp-mpow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mpow/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mpow/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mpow/build/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mpow/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mpow/logs/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mpow/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mpow/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mpow/scripts/run_fstp_mpow_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mpow/scripts/run_fstp_mpow_sims.sh -------------------------------------------------------------------------------- /artifacts/fstp-mpow/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mpow/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fstp-mpow/source/fstp-mpow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mpow/source/fstp-mpow.cpp -------------------------------------------------------------------------------- /artifacts/fstp-mprc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mprc/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mprc/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mprc/build/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mprc/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mprc/logs/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mprc/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mprc/scripts/README.md -------------------------------------------------------------------------------- /artifacts/fstp-mprc/scripts/run_fstp_mprc_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mprc/scripts/run_fstp_mprc_sims.sh -------------------------------------------------------------------------------- /artifacts/fstp-mprc/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mprc/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/fstp-mprc/source/fstp-mprc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/fstp-mprc/source/fstp-mprc.cpp -------------------------------------------------------------------------------- /artifacts/sim-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/README.md -------------------------------------------------------------------------------- /artifacts/sim-common/dt/date-time.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/dt/date-time.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/cs-planet.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/cs-planet.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/cs-spacex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/cs-spacex.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/cs-spire.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/cs-spire.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/fs-planet.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/fs-planet.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/fs-spacex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/fs-spacex.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/fs-spire.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/fs-spire.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/os-planet.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/os-planet.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/os-spacex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/os-spacex.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/os-spire.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/os-spire.dat -------------------------------------------------------------------------------- /artifacts/sim-common/sat/planet.tle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/planet.tle -------------------------------------------------------------------------------- /artifacts/sim-common/sat/spacex.tle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/spacex.tle -------------------------------------------------------------------------------- /artifacts/sim-common/sat/spire.tle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sat/spire.tle -------------------------------------------------------------------------------- /artifacts/sim-common/sensor/sensor.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/sensor/sensor.dat -------------------------------------------------------------------------------- /artifacts/sim-common/unis/unis.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-common/unis/unis.dat -------------------------------------------------------------------------------- /artifacts/sim-cs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/README.md -------------------------------------------------------------------------------- /artifacts/sim-cs/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/build/README.md -------------------------------------------------------------------------------- /artifacts/sim-cs/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/data/README.md -------------------------------------------------------------------------------- /artifacts/sim-cs/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/logs/README.md -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/README.md -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/generate_data_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/generate_data_directories.sh -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/populate_gnd_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/populate_gnd_ring.py -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/populate_gnd_unis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/populate_gnd_unis.py -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/populate_rx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/populate_rx.py -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/populate_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/populate_tx.py -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/prep_cs_scenarios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/prep_cs_scenarios.sh -------------------------------------------------------------------------------- /artifacts/sim-cs/scripts/run_cs_scenarios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/scripts/run_cs_scenarios.sh -------------------------------------------------------------------------------- /artifacts/sim-cs/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/sim-cs/source/close-spaced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-cs/source/close-spaced.cpp -------------------------------------------------------------------------------- /artifacts/sim-fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/README.md -------------------------------------------------------------------------------- /artifacts/sim-fs/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/build/README.md -------------------------------------------------------------------------------- /artifacts/sim-fs/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/data/README.md -------------------------------------------------------------------------------- /artifacts/sim-fs/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/logs/README.md -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/README.md -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/generate_data_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/generate_data_directories.sh -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/populate_gnd_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/populate_gnd_ring.py -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/populate_gnd_unis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/populate_gnd_unis.py -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/populate_rx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/populate_rx.py -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/populate_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/populate_tx.py -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/prep_fs_scenarios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/prep_fs_scenarios.sh -------------------------------------------------------------------------------- /artifacts/sim-fs/scripts/run_fs_scenarios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/scripts/run_fs_scenarios.sh -------------------------------------------------------------------------------- /artifacts/sim-fs/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/sim-fs/source/frame-spaced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-fs/source/frame-spaced.cpp -------------------------------------------------------------------------------- /artifacts/sim-os/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/README.md -------------------------------------------------------------------------------- /artifacts/sim-os/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/build/README.md -------------------------------------------------------------------------------- /artifacts/sim-os/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/data/README.md -------------------------------------------------------------------------------- /artifacts/sim-os/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/logs/README.md -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/README.md -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/generate_data_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/generate_data_directories.sh -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/populate_gnd_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/populate_gnd_ring.py -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/populate_gnd_unis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/populate_gnd_unis.py -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/populate_rx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/populate_rx.py -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/populate_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/populate_tx.py -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/prep_os_scenarios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/prep_os_scenarios.sh -------------------------------------------------------------------------------- /artifacts/sim-os/scripts/run_os_scenarios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/scripts/run_os_scenarios.sh -------------------------------------------------------------------------------- /artifacts/sim-os/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/source/CMakeLists.txt -------------------------------------------------------------------------------- /artifacts/sim-os/source/orbit-spaced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/artifacts/sim-os/source/orbit-spaced.cpp -------------------------------------------------------------------------------- /plots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/plots/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/collate_downlink_deficit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/collate_downlink_deficit.py -------------------------------------------------------------------------------- /scripts/csfp_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/csfp_coverage.py -------------------------------------------------------------------------------- /scripts/csfp_latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/csfp_latency.py -------------------------------------------------------------------------------- /scripts/cstp_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/cstp_coverage.py -------------------------------------------------------------------------------- /scripts/cstp_latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/cstp_latency.py -------------------------------------------------------------------------------- /scripts/fsfp_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/fsfp_coverage.py -------------------------------------------------------------------------------- /scripts/fsfp_latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/fsfp_latency.py -------------------------------------------------------------------------------- /scripts/fstp_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/fstp_coverage.py -------------------------------------------------------------------------------- /scripts/fstp_latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/fstp_latency.py -------------------------------------------------------------------------------- /scripts/generate_f6_plots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/generate_f6_plots.sh -------------------------------------------------------------------------------- /scripts/generate_f7_plots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/generate_f7_plots.sh -------------------------------------------------------------------------------- /scripts/generate_f8_plots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/generate_f8_plots.sh -------------------------------------------------------------------------------- /scripts/generate_plots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/generate_plots.sh -------------------------------------------------------------------------------- /scripts/plot_f6a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f6a.py -------------------------------------------------------------------------------- /scripts/plot_f6b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f6b.py -------------------------------------------------------------------------------- /scripts/plot_f6c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f6c.py -------------------------------------------------------------------------------- /scripts/plot_f7a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f7a.py -------------------------------------------------------------------------------- /scripts/plot_f7b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f7b.py -------------------------------------------------------------------------------- /scripts/plot_f7c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f7c.py -------------------------------------------------------------------------------- /scripts/plot_f7d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f7d.py -------------------------------------------------------------------------------- /scripts/plot_f8a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f8a.py -------------------------------------------------------------------------------- /scripts/plot_f8b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f8b.py -------------------------------------------------------------------------------- /scripts/plot_f8c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f8c.py -------------------------------------------------------------------------------- /scripts/plot_f8d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/plot_f8d.py -------------------------------------------------------------------------------- /scripts/process_f6_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/process_f6_logs.sh -------------------------------------------------------------------------------- /scripts/process_f7_f8_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/process_f7_f8_logs.sh -------------------------------------------------------------------------------- /scripts/process_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/process_logs.sh -------------------------------------------------------------------------------- /scripts/run_csfp_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/run_csfp_sims.sh -------------------------------------------------------------------------------- /scripts/run_cstp_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/run_cstp_sims.sh -------------------------------------------------------------------------------- /scripts/run_fsfp_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/run_fsfp_sims.sh -------------------------------------------------------------------------------- /scripts/run_fstp_sims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/run_fstp_sims.sh -------------------------------------------------------------------------------- /scripts/run_sims_cs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/run_sims_cs.sh -------------------------------------------------------------------------------- /scripts/run_sims_fs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/run_sims_fs.sh -------------------------------------------------------------------------------- /scripts/run_sims_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/run_sims_os.sh -------------------------------------------------------------------------------- /scripts/setup_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/setup_dependencies.sh -------------------------------------------------------------------------------- /scripts/setup_py_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/scripts/setup_py_venv.sh -------------------------------------------------------------------------------- /software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/README.md -------------------------------------------------------------------------------- /software/comsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/README.md -------------------------------------------------------------------------------- /software/comsim/channel-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel-type/README.md -------------------------------------------------------------------------------- /software/comsim/channel-type/include/ChannelType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel-type/include/ChannelType.hpp -------------------------------------------------------------------------------- /software/comsim/channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel/README.md -------------------------------------------------------------------------------- /software/comsim/channel/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel/build/README.md -------------------------------------------------------------------------------- /software/comsim/channel/include/Channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel/include/Channel.hpp -------------------------------------------------------------------------------- /software/comsim/channel/source/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel/source/Channel.cpp -------------------------------------------------------------------------------- /software/comsim/channel/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/channel/test/test-channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/channel/test/test-channel.cpp -------------------------------------------------------------------------------- /software/comsim/constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/constants/README.md -------------------------------------------------------------------------------- /software/comsim/constants/include/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/constants/include/constants.hpp -------------------------------------------------------------------------------- /software/comsim/date-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/date-time/README.md -------------------------------------------------------------------------------- /software/comsim/date-time/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/date-time/build/README.md -------------------------------------------------------------------------------- /software/comsim/date-time/include/DateTime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/date-time/include/DateTime.hpp -------------------------------------------------------------------------------- /software/comsim/date-time/source/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/date-time/source/DateTime.cpp -------------------------------------------------------------------------------- /software/comsim/date-time/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/date-time/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/date-time/test/test-date-time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/date-time/test/test-date-time.cpp -------------------------------------------------------------------------------- /software/comsim/edge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/edge/README.md -------------------------------------------------------------------------------- /software/comsim/edge/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/edge/build/README.md -------------------------------------------------------------------------------- /software/comsim/edge/include/Edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/edge/include/Edge.hpp -------------------------------------------------------------------------------- /software/comsim/edge/source/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/edge/source/Edge.cpp -------------------------------------------------------------------------------- /software/comsim/edge/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/edge/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/edge/test/test-edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/edge/test/test-edge.cpp -------------------------------------------------------------------------------- /software/comsim/ground-station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/ground-station/README.md -------------------------------------------------------------------------------- /software/comsim/ground-station/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/ground-station/build/README.md -------------------------------------------------------------------------------- /software/comsim/ground-station/include/GroundStation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/ground-station/include/GroundStation.hpp -------------------------------------------------------------------------------- /software/comsim/ground-station/source/GroundStation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/ground-station/source/GroundStation.cpp -------------------------------------------------------------------------------- /software/comsim/ground-station/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/ground-station/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/ground-station/test/test-ground-station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/ground-station/test/test-ground-station.cpp -------------------------------------------------------------------------------- /software/comsim/isim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/isim/README.md -------------------------------------------------------------------------------- /software/comsim/isim/include/ISim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/isim/include/ISim.hpp -------------------------------------------------------------------------------- /software/comsim/log-level/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log-level/README.md -------------------------------------------------------------------------------- /software/comsim/log-level/include/LogLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log-level/include/LogLevel.hpp -------------------------------------------------------------------------------- /software/comsim/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log/README.md -------------------------------------------------------------------------------- /software/comsim/log/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log/build/README.md -------------------------------------------------------------------------------- /software/comsim/log/include/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log/include/Log.hpp -------------------------------------------------------------------------------- /software/comsim/log/source/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log/source/Log.cpp -------------------------------------------------------------------------------- /software/comsim/log/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/log/test/test-log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/log/test/test-log.cpp -------------------------------------------------------------------------------- /software/comsim/receive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/receive/README.md -------------------------------------------------------------------------------- /software/comsim/receive/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/receive/build/README.md -------------------------------------------------------------------------------- /software/comsim/receive/include/Receive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/receive/include/Receive.hpp -------------------------------------------------------------------------------- /software/comsim/receive/source/Receive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/receive/source/Receive.cpp -------------------------------------------------------------------------------- /software/comsim/receive/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/receive/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/receive/test/test-receive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/receive/test/test-receive.cpp -------------------------------------------------------------------------------- /software/comsim/satellite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/README.md -------------------------------------------------------------------------------- /software/comsim/satellite/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/build/README.md -------------------------------------------------------------------------------- /software/comsim/satellite/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/data/README.md -------------------------------------------------------------------------------- /software/comsim/satellite/data/test.tle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/data/test.tle -------------------------------------------------------------------------------- /software/comsim/satellite/include/Satellite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/include/Satellite.hpp -------------------------------------------------------------------------------- /software/comsim/satellite/source/Satellite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/source/Satellite.cpp -------------------------------------------------------------------------------- /software/comsim/satellite/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/satellite/test/test-satellite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/satellite/test/test-satellite.cpp -------------------------------------------------------------------------------- /software/comsim/sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/sensor/README.md -------------------------------------------------------------------------------- /software/comsim/sensor/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/sensor/build/README.md -------------------------------------------------------------------------------- /software/comsim/sensor/include/Sensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/sensor/include/Sensor.hpp -------------------------------------------------------------------------------- /software/comsim/sensor/source/Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/sensor/source/Sensor.cpp -------------------------------------------------------------------------------- /software/comsim/sensor/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/sensor/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/sensor/test/test-sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/sensor/test/test-sensor.cpp -------------------------------------------------------------------------------- /software/comsim/transmit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/transmit/README.md -------------------------------------------------------------------------------- /software/comsim/transmit/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/transmit/build/README.md -------------------------------------------------------------------------------- /software/comsim/transmit/include/Transmit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/transmit/include/Transmit.hpp -------------------------------------------------------------------------------- /software/comsim/transmit/source/Transmit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/transmit/source/Transmit.cpp -------------------------------------------------------------------------------- /software/comsim/transmit/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/transmit/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/transmit/test/test-transmit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/transmit/test/test-transmit.cpp -------------------------------------------------------------------------------- /software/comsim/utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/utilities/README.md -------------------------------------------------------------------------------- /software/comsim/utilities/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/utilities/build/README.md -------------------------------------------------------------------------------- /software/comsim/utilities/include/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/utilities/include/utilities.hpp -------------------------------------------------------------------------------- /software/comsim/utilities/source/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/utilities/source/utilities.cpp -------------------------------------------------------------------------------- /software/comsim/utilities/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/utilities/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/utilities/test/test-utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/utilities/test/test-utilities.cpp -------------------------------------------------------------------------------- /software/comsim/vertex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/vertex/README.md -------------------------------------------------------------------------------- /software/comsim/vertex/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/vertex/build/README.md -------------------------------------------------------------------------------- /software/comsim/vertex/include/Vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/vertex/include/Vertex.hpp -------------------------------------------------------------------------------- /software/comsim/vertex/source/Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/vertex/source/Vertex.cpp -------------------------------------------------------------------------------- /software/comsim/vertex/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/vertex/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/comsim/vertex/test/test-vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/comsim/vertex/test/test-vertex.cpp -------------------------------------------------------------------------------- /software/satsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/README.md -------------------------------------------------------------------------------- /software/satsim/capacitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/capacitor/README.md -------------------------------------------------------------------------------- /software/satsim/capacitor/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/capacitor/build/README.md -------------------------------------------------------------------------------- /software/satsim/capacitor/include/Capacitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/capacitor/include/Capacitor.hpp -------------------------------------------------------------------------------- /software/satsim/capacitor/source/Capacitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/capacitor/source/Capacitor.cpp -------------------------------------------------------------------------------- /software/satsim/capacitor/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/capacitor/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/capacitor/test/test-capacitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/capacitor/test/test-capacitor.cpp -------------------------------------------------------------------------------- /software/satsim/chameleon-imager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/chameleon-imager/README.md -------------------------------------------------------------------------------- /software/satsim/chameleon-imager/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/chameleon-imager/build/README.md -------------------------------------------------------------------------------- /software/satsim/chameleon-imager/include/ChameleonImager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/chameleon-imager/include/ChameleonImager.hpp -------------------------------------------------------------------------------- /software/satsim/chameleon-imager/source/ChameleonImager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/chameleon-imager/source/ChameleonImager.cpp -------------------------------------------------------------------------------- /software/satsim/chameleon-imager/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/chameleon-imager/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/chameleon-imager/test/test-chameleon-imager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/chameleon-imager/test/test-chameleon-imager.cpp -------------------------------------------------------------------------------- /software/satsim/eh-satellite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-satellite/README.md -------------------------------------------------------------------------------- /software/satsim/eh-satellite/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-satellite/build/README.md -------------------------------------------------------------------------------- /software/satsim/eh-satellite/include/EHSatellite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-satellite/include/EHSatellite.hpp -------------------------------------------------------------------------------- /software/satsim/eh-satellite/source/EHSatellite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-satellite/source/EHSatellite.cpp -------------------------------------------------------------------------------- /software/satsim/eh-satellite/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-satellite/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/eh-satellite/test/test-eh-satellite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-satellite/test/test-eh-satellite.cpp -------------------------------------------------------------------------------- /software/satsim/eh-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-system/README.md -------------------------------------------------------------------------------- /software/satsim/eh-system/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-system/build/README.md -------------------------------------------------------------------------------- /software/satsim/eh-system/include/EHSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-system/include/EHSystem.hpp -------------------------------------------------------------------------------- /software/satsim/eh-system/source/EHSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-system/source/EHSystem.cpp -------------------------------------------------------------------------------- /software/satsim/eh-system/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-system/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/eh-system/test/test-eh-system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/eh-system/test/test-eh-system.cpp -------------------------------------------------------------------------------- /software/satsim/energy-consumer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-consumer/README.md -------------------------------------------------------------------------------- /software/satsim/energy-consumer/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-consumer/build/README.md -------------------------------------------------------------------------------- /software/satsim/energy-consumer/include/EnergyConsumer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-consumer/include/EnergyConsumer.hpp -------------------------------------------------------------------------------- /software/satsim/energy-consumer/source/EnergyConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-consumer/source/EnergyConsumer.cpp -------------------------------------------------------------------------------- /software/satsim/energy-consumer/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-consumer/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/energy-consumer/test/test-energy-consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-consumer/test/test-energy-consumer.cpp -------------------------------------------------------------------------------- /software/satsim/energy-harvester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-harvester/README.md -------------------------------------------------------------------------------- /software/satsim/energy-harvester/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-harvester/build/README.md -------------------------------------------------------------------------------- /software/satsim/energy-harvester/include/EnergyHarvester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-harvester/include/EnergyHarvester.hpp -------------------------------------------------------------------------------- /software/satsim/energy-harvester/source/EnergyHarvester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-harvester/source/EnergyHarvester.cpp -------------------------------------------------------------------------------- /software/satsim/energy-harvester/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-harvester/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/energy-harvester/test/test-energy-harvester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-harvester/test/test-energy-harvester.cpp -------------------------------------------------------------------------------- /software/satsim/energy-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-storage/README.md -------------------------------------------------------------------------------- /software/satsim/energy-storage/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-storage/build/README.md -------------------------------------------------------------------------------- /software/satsim/energy-storage/include/EnergyStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-storage/include/EnergyStorage.hpp -------------------------------------------------------------------------------- /software/satsim/energy-storage/source/EnergyStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-storage/source/EnergyStorage.cpp -------------------------------------------------------------------------------- /software/satsim/energy-storage/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-storage/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/energy-storage/test/test-energy-storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/energy-storage/test/test-energy-storage.cpp -------------------------------------------------------------------------------- /software/satsim/ilog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/ilog/README.md -------------------------------------------------------------------------------- /software/satsim/ilog/include/ILog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/ilog/include/ILog.hpp -------------------------------------------------------------------------------- /software/satsim/isim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/isim/README.md -------------------------------------------------------------------------------- /software/satsim/isim/include/ISim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/isim/include/ISim.hpp -------------------------------------------------------------------------------- /software/satsim/iwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/iwork/README.md -------------------------------------------------------------------------------- /software/satsim/iwork/include/IWork.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/iwork/include/IWork.hpp -------------------------------------------------------------------------------- /software/satsim/jetson-tx2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx2/README.md -------------------------------------------------------------------------------- /software/satsim/jetson-tx2/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx2/build/README.md -------------------------------------------------------------------------------- /software/satsim/jetson-tx2/include/JetsonTX2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx2/include/JetsonTX2.hpp -------------------------------------------------------------------------------- /software/satsim/jetson-tx2/source/JetsonTX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx2/source/JetsonTX2.cpp -------------------------------------------------------------------------------- /software/satsim/jetson-tx2/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx2/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/jetson-tx2/test/test-jetson-tx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx2/test/test-jetson-tx2.cpp -------------------------------------------------------------------------------- /software/satsim/jetson-tx4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx4/README.md -------------------------------------------------------------------------------- /software/satsim/jetson-tx4/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx4/build/README.md -------------------------------------------------------------------------------- /software/satsim/jetson-tx4/include/JetsonTX4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx4/include/JetsonTX4.hpp -------------------------------------------------------------------------------- /software/satsim/jetson-tx4/source/JetsonTX4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx4/source/JetsonTX4.cpp -------------------------------------------------------------------------------- /software/satsim/jetson-tx4/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx4/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/jetson-tx4/test/test-jetson-tx4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/jetson-tx4/test/test-jetson-tx4.cpp -------------------------------------------------------------------------------- /software/satsim/job/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/job/README.md -------------------------------------------------------------------------------- /software/satsim/job/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/job/build/README.md -------------------------------------------------------------------------------- /software/satsim/job/include/Job.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/job/include/Job.hpp -------------------------------------------------------------------------------- /software/satsim/job/source/Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/job/source/Job.cpp -------------------------------------------------------------------------------- /software/satsim/job/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/job/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/job/test/test-job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/job/test/test-job.cpp -------------------------------------------------------------------------------- /software/satsim/logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/logger/README.md -------------------------------------------------------------------------------- /software/satsim/logger/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/logger/build/README.md -------------------------------------------------------------------------------- /software/satsim/logger/include/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/logger/include/Logger.hpp -------------------------------------------------------------------------------- /software/satsim/logger/source/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/logger/source/Logger.cpp -------------------------------------------------------------------------------- /software/satsim/logger/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/logger/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/logger/test/test-logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/logger/test/test-logger.cpp -------------------------------------------------------------------------------- /software/satsim/mai-adacs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/mai-adacs/README.md -------------------------------------------------------------------------------- /software/satsim/mai-adacs/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/mai-adacs/build/README.md -------------------------------------------------------------------------------- /software/satsim/mai-adacs/include/MAIAdacs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/mai-adacs/include/MAIAdacs.hpp -------------------------------------------------------------------------------- /software/satsim/mai-adacs/source/MAIAdacs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/mai-adacs/source/MAIAdacs.cpp -------------------------------------------------------------------------------- /software/satsim/mai-adacs/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/mai-adacs/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/mai-adacs/test/test-mai-adacs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/mai-adacs/test/test-mai-adacs.cpp -------------------------------------------------------------------------------- /software/satsim/orbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/orbit/README.md -------------------------------------------------------------------------------- /software/satsim/orbit/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/orbit/build/README.md -------------------------------------------------------------------------------- /software/satsim/orbit/include/Orbit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/orbit/include/Orbit.hpp -------------------------------------------------------------------------------- /software/satsim/orbit/source/Orbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/orbit/source/Orbit.cpp -------------------------------------------------------------------------------- /software/satsim/orbit/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/orbit/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/orbit/test/test-orbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/orbit/test/test-orbit.cpp -------------------------------------------------------------------------------- /software/satsim/satellite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/satellite/README.md -------------------------------------------------------------------------------- /software/satsim/satellite/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/satellite/build/README.md -------------------------------------------------------------------------------- /software/satsim/satellite/include/Satellite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/satellite/include/Satellite.hpp -------------------------------------------------------------------------------- /software/satsim/satellite/source/Satellite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/satellite/source/Satellite.cpp -------------------------------------------------------------------------------- /software/satsim/satellite/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/satellite/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/satellite/test/test-satellite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/satellite/test/test-satellite.cpp -------------------------------------------------------------------------------- /software/satsim/simple-solar-cell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/simple-solar-cell/README.md -------------------------------------------------------------------------------- /software/satsim/simple-solar-cell/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/simple-solar-cell/build/README.md -------------------------------------------------------------------------------- /software/satsim/simple-solar-cell/include/SimpleSolarCell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/simple-solar-cell/include/SimpleSolarCell.hpp -------------------------------------------------------------------------------- /software/satsim/simple-solar-cell/source/SimpleSolarCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/simple-solar-cell/source/SimpleSolarCell.cpp -------------------------------------------------------------------------------- /software/satsim/simple-solar-cell/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/simple-solar-cell/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/simple-solar-cell/test/test-simple-solar-cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/simple-solar-cell/test/test-simple-solar-cell.cpp -------------------------------------------------------------------------------- /software/satsim/xlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/xlink/README.md -------------------------------------------------------------------------------- /software/satsim/xlink/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/xlink/build/README.md -------------------------------------------------------------------------------- /software/satsim/xlink/include/XLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/xlink/include/XLink.hpp -------------------------------------------------------------------------------- /software/satsim/xlink/source/XLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/xlink/source/XLink.cpp -------------------------------------------------------------------------------- /software/satsim/xlink/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/xlink/test/CMakeLists.txt -------------------------------------------------------------------------------- /software/satsim/xlink/test/test-xlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUAbstract/oec-asplos20-artifact/HEAD/software/satsim/xlink/test/test-xlink.cpp --------------------------------------------------------------------------------