├── .dockerignore ├── .github └── workflows │ └── simod.yml ├── .gitignore ├── .java-version ├── .readthedocs.yaml ├── .sdkmanrc ├── Dockerfile ├── LICENSE ├── README.md ├── ansible.cfg ├── ansible ├── docker.yml ├── experiment.yml ├── inventory.yml ├── templates │ └── docker_run_cmd.sh.j2 └── test.yml ├── benchmarking ├── analyze_results.py ├── docker_collect_results.py ├── docker_jobs.py ├── input │ ├── config.yml │ ├── config_f_naive.yml │ ├── config_no_extraneous.yml │ └── config_observed_arrivals.yml ├── plot_measurements.py └── preprocess_logs.py ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── complete_configuration.yml │ ├── configuration_example.yml │ ├── configuration_example_data_aware.yml │ ├── configuration_example_fuzzy.yml │ ├── configuration_example_with_evaluation.yml │ ├── configuration_example_with_provided_process_model.yml │ ├── configuration_one_shot.yml │ └── simod.png │ ├── api.rst │ ├── citation.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ └── usage.rst ├── poetry.toml ├── pyproject.toml ├── resources ├── config │ ├── benchmark │ │ ├── benchmark_diff.yml │ │ ├── benchmark_diff_data_aware.yml │ │ ├── benchmark_diff_extr.yml │ │ ├── benchmark_fuzz.yml │ │ ├── benchmark_fuzz_extr.yml │ │ └── benchmark_pool.yml │ ├── complete_configuration.yml │ ├── configuration_example.yml │ ├── configuration_example_data_aware.yml │ ├── configuration_example_fuzzy.yml │ ├── configuration_example_with_evaluation.yml │ ├── configuration_example_with_provided_process_model.yml │ └── configuration_one_shot.yml ├── event_logs │ ├── LoanApp_simplified_test.csv.gz │ ├── LoanApp_simplified_train.csv.gz │ └── PurchasingExample.csv.gz └── models │ └── LoanApp_simplified.bpmn ├── run.sh ├── src └── simod │ ├── __init__.py │ ├── batching │ ├── __init__.py │ ├── discovery.py │ └── types.py │ ├── branch_rules │ ├── __init__.py │ ├── discovery.py │ └── types.py │ ├── cli.py │ ├── cli_formatter.py │ ├── control_flow │ ├── __init__.py │ ├── discovery.py │ ├── lib │ │ ├── bpmn-layout-1.0.6-jar-with-dependencies.jar │ │ └── split-miner-1.7.1-all.jar │ ├── optimizer.py │ └── settings.py │ ├── data_attributes │ ├── __init__.py │ ├── discovery.py │ └── types.py │ ├── event_log │ ├── __init__.py │ ├── event_log.py │ └── preprocessor.py │ ├── extraneous_delays │ ├── __init__.py │ ├── optimizer.py │ ├── types.py │ └── utilities.py │ ├── metrics.py │ ├── prioritization │ ├── __init__.py │ ├── discovery.py │ └── types.py │ ├── resource_model │ ├── __init__.py │ ├── optimizer.py │ ├── repair.py │ └── settings.py │ ├── runtime_meter.py │ ├── settings │ ├── __init__.py │ ├── common_settings.py │ ├── control_flow_settings.py │ ├── extraneous_delays_settings.py │ ├── preprocessing_settings.py │ ├── resource_model_settings.py │ └── simod_settings.py │ ├── simod.py │ ├── simulation │ ├── __init__.py │ ├── parameters │ │ ├── BPS_model.py │ │ └── __init__.py │ └── prosimos.py │ └── utilities.py └── tests ├── __init__.py ├── assets ├── Control_flow_optimization_test.bpmn ├── Control_flow_optimization_test.csv ├── Insurance_Claims_test.csv ├── Insurance_Claims_train.csv ├── LoanApp_simplified.bpmn ├── LoanApp_simplified.csv.gz ├── LoanApp_simplified_2.csv.gz ├── LoanApp_simplified_without_approve_loan_offer.csv ├── PurchasingExample.xes ├── Resource_model_optimization_test.bpmn ├── Resource_model_optimization_test.csv ├── Simple_log_no_start_times.csv ├── Simple_log_with_batching.csv ├── Simple_log_with_prioritization.csv ├── bpic15 │ ├── BPIC15_1.bpmn │ ├── BPIC15_1.csv.gz │ └── bpic15_1_with_model_v4.yml ├── branch_rules │ ├── or.bpmn │ ├── or_1.csv.gz │ ├── or_2.csv.gz │ ├── or_3.csv.gz │ ├── or_4.csv.gz │ ├── or_5.csv.gz │ ├── or_6.csv.gz │ ├── or_7.csv.gz │ ├── or_8.csv.gz │ ├── xor.bpmn │ ├── xor_1.csv.gz │ ├── xor_2.csv.gz │ ├── xor_3.csv.gz │ ├── xor_5.csv.gz │ ├── xor_6.csv.gz │ └── xor_7.csv.gz ├── configuration_simod_basic.yml ├── configuration_simod_with_extraneous.yml ├── configuration_simod_with_model.yml ├── configuration_simod_with_model_and_batching.yml ├── configuration_simod_with_model_and_extraneous.yml ├── configuration_simod_with_model_and_prioritization.yml ├── control_flow_discovery_output │ ├── model-sm2.bpmn │ ├── model-sm3.bpmn │ ├── model-split_miner_v1.bpmn │ └── model-split_miner_v2.bpmn ├── data_attributes │ ├── case_attributes.csv.gz │ ├── event_attribute_1.csv.gz │ ├── event_attribute_15.csv.gz │ ├── event_attribute_3.csv.gz │ ├── event_attribute_5.csv.gz │ ├── event_attribute_7.csv.gz │ ├── event_attribute_9.csv.gz │ ├── global_attribute_1.csv.gz │ ├── global_attribute_15.csv.gz │ ├── global_attribute_3.csv.gz │ ├── global_attribute_5.csv.gz │ ├── global_attribute_7.csv.gz │ └── global_attribute_9.csv.gz ├── model_sequence_self_loop.xes ├── model_sequence_self_loop_only_end.xes └── process_model_with_SplitMiner_self_loops.bpmn ├── conftest.py ├── test_batching ├── __init__.py ├── assets │ ├── LoanApp_batch_sim_log.csv │ └── event_log_5.csv ├── test_batching_discovery.py └── test_types.py ├── test_bpic15.py ├── test_branch_rules ├── __init__.py └── test_discovery.py ├── test_case_attributes ├── __init__.py └── test_discovery.py ├── test_cli.py ├── test_control_flow ├── __init__.py ├── test_discovery.py └── test_optimizer.py ├── test_data_attributes ├── __init__.py └── test_discovery.py ├── test_event_log ├── __init__.py ├── test_event_log.py └── test_preprocessor.py ├── test_metrics.py ├── test_prioritization ├── __init__.py ├── test_prioritization_discovery.py └── test_prioritization_impact.py ├── test_resource_model ├── __init__.py └── test_optimizer.py ├── test_settings ├── __init__.py ├── test_control_flow_settings.py ├── test_resource_model_settings.py └── test_simod_settings.py ├── test_simod.py ├── test_simulation ├── __init__.py ├── assets │ ├── simulated_log_0.csv │ ├── simulated_log_1.csv │ ├── simulated_log_2.csv │ └── validation_log.csv └── test_evaluate_logs.py └── test_utilities.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/simod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/.github/workflows/simod.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/.gitignore -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 1.8 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.sdkmanrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/.sdkmanrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/ansible.cfg -------------------------------------------------------------------------------- /ansible/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/ansible/docker.yml -------------------------------------------------------------------------------- /ansible/experiment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/ansible/experiment.yml -------------------------------------------------------------------------------- /ansible/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/ansible/inventory.yml -------------------------------------------------------------------------------- /ansible/templates/docker_run_cmd.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/ansible/templates/docker_run_cmd.sh.j2 -------------------------------------------------------------------------------- /ansible/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/ansible/test.yml -------------------------------------------------------------------------------- /benchmarking/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/analyze_results.py -------------------------------------------------------------------------------- /benchmarking/docker_collect_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/docker_collect_results.py -------------------------------------------------------------------------------- /benchmarking/docker_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/docker_jobs.py -------------------------------------------------------------------------------- /benchmarking/input/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/input/config.yml -------------------------------------------------------------------------------- /benchmarking/input/config_f_naive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/input/config_f_naive.yml -------------------------------------------------------------------------------- /benchmarking/input/config_no_extraneous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/input/config_no_extraneous.yml -------------------------------------------------------------------------------- /benchmarking/input/config_observed_arrivals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/input/config_observed_arrivals.yml -------------------------------------------------------------------------------- /benchmarking/plot_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/plot_measurements.py -------------------------------------------------------------------------------- /benchmarking/preprocess_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/benchmarking/preprocess_logs.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/complete_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/complete_configuration.yml -------------------------------------------------------------------------------- /docs/source/_static/configuration_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/configuration_example.yml -------------------------------------------------------------------------------- /docs/source/_static/configuration_example_data_aware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/configuration_example_data_aware.yml -------------------------------------------------------------------------------- /docs/source/_static/configuration_example_fuzzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/configuration_example_fuzzy.yml -------------------------------------------------------------------------------- /docs/source/_static/configuration_example_with_evaluation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/configuration_example_with_evaluation.yml -------------------------------------------------------------------------------- /docs/source/_static/configuration_example_with_provided_process_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/configuration_example_with_provided_process_model.yml -------------------------------------------------------------------------------- /docs/source/_static/configuration_one_shot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/configuration_one_shot.yml -------------------------------------------------------------------------------- /docs/source/_static/simod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/_static/simod.png -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/citation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/citation.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/poetry.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources/config/benchmark/benchmark_diff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/benchmark/benchmark_diff.yml -------------------------------------------------------------------------------- /resources/config/benchmark/benchmark_diff_data_aware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/benchmark/benchmark_diff_data_aware.yml -------------------------------------------------------------------------------- /resources/config/benchmark/benchmark_diff_extr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/benchmark/benchmark_diff_extr.yml -------------------------------------------------------------------------------- /resources/config/benchmark/benchmark_fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/benchmark/benchmark_fuzz.yml -------------------------------------------------------------------------------- /resources/config/benchmark/benchmark_fuzz_extr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/benchmark/benchmark_fuzz_extr.yml -------------------------------------------------------------------------------- /resources/config/benchmark/benchmark_pool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/benchmark/benchmark_pool.yml -------------------------------------------------------------------------------- /resources/config/complete_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/complete_configuration.yml -------------------------------------------------------------------------------- /resources/config/configuration_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/configuration_example.yml -------------------------------------------------------------------------------- /resources/config/configuration_example_data_aware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/configuration_example_data_aware.yml -------------------------------------------------------------------------------- /resources/config/configuration_example_fuzzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/configuration_example_fuzzy.yml -------------------------------------------------------------------------------- /resources/config/configuration_example_with_evaluation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/configuration_example_with_evaluation.yml -------------------------------------------------------------------------------- /resources/config/configuration_example_with_provided_process_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/configuration_example_with_provided_process_model.yml -------------------------------------------------------------------------------- /resources/config/configuration_one_shot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/config/configuration_one_shot.yml -------------------------------------------------------------------------------- /resources/event_logs/LoanApp_simplified_test.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/event_logs/LoanApp_simplified_test.csv.gz -------------------------------------------------------------------------------- /resources/event_logs/LoanApp_simplified_train.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/event_logs/LoanApp_simplified_train.csv.gz -------------------------------------------------------------------------------- /resources/event_logs/PurchasingExample.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/event_logs/PurchasingExample.csv.gz -------------------------------------------------------------------------------- /resources/models/LoanApp_simplified.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/resources/models/LoanApp_simplified.bpmn -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/run.sh -------------------------------------------------------------------------------- /src/simod/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["simod"] 2 | -------------------------------------------------------------------------------- /src/simod/batching/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/batching/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/batching/discovery.py -------------------------------------------------------------------------------- /src/simod/batching/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/batching/types.py -------------------------------------------------------------------------------- /src/simod/branch_rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/branch_rules/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/branch_rules/discovery.py -------------------------------------------------------------------------------- /src/simod/branch_rules/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/branch_rules/types.py -------------------------------------------------------------------------------- /src/simod/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/cli.py -------------------------------------------------------------------------------- /src/simod/cli_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/cli_formatter.py -------------------------------------------------------------------------------- /src/simod/control_flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/control_flow/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/control_flow/discovery.py -------------------------------------------------------------------------------- /src/simod/control_flow/lib/bpmn-layout-1.0.6-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/control_flow/lib/bpmn-layout-1.0.6-jar-with-dependencies.jar -------------------------------------------------------------------------------- /src/simod/control_flow/lib/split-miner-1.7.1-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/control_flow/lib/split-miner-1.7.1-all.jar -------------------------------------------------------------------------------- /src/simod/control_flow/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/control_flow/optimizer.py -------------------------------------------------------------------------------- /src/simod/control_flow/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/control_flow/settings.py -------------------------------------------------------------------------------- /src/simod/data_attributes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/data_attributes/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/data_attributes/discovery.py -------------------------------------------------------------------------------- /src/simod/data_attributes/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/data_attributes/types.py -------------------------------------------------------------------------------- /src/simod/event_log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/event_log/event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/event_log/event_log.py -------------------------------------------------------------------------------- /src/simod/event_log/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/event_log/preprocessor.py -------------------------------------------------------------------------------- /src/simod/extraneous_delays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/extraneous_delays/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/extraneous_delays/optimizer.py -------------------------------------------------------------------------------- /src/simod/extraneous_delays/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/extraneous_delays/types.py -------------------------------------------------------------------------------- /src/simod/extraneous_delays/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/extraneous_delays/utilities.py -------------------------------------------------------------------------------- /src/simod/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/metrics.py -------------------------------------------------------------------------------- /src/simod/prioritization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/prioritization/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/prioritization/discovery.py -------------------------------------------------------------------------------- /src/simod/prioritization/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/prioritization/types.py -------------------------------------------------------------------------------- /src/simod/resource_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/resource_model/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/resource_model/optimizer.py -------------------------------------------------------------------------------- /src/simod/resource_model/repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/resource_model/repair.py -------------------------------------------------------------------------------- /src/simod/resource_model/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/resource_model/settings.py -------------------------------------------------------------------------------- /src/simod/runtime_meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/runtime_meter.py -------------------------------------------------------------------------------- /src/simod/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/settings/__init__.py -------------------------------------------------------------------------------- /src/simod/settings/common_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/settings/common_settings.py -------------------------------------------------------------------------------- /src/simod/settings/control_flow_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/settings/control_flow_settings.py -------------------------------------------------------------------------------- /src/simod/settings/extraneous_delays_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/settings/extraneous_delays_settings.py -------------------------------------------------------------------------------- /src/simod/settings/preprocessing_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/settings/preprocessing_settings.py -------------------------------------------------------------------------------- /src/simod/settings/resource_model_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/settings/resource_model_settings.py -------------------------------------------------------------------------------- /src/simod/settings/simod_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/settings/simod_settings.py -------------------------------------------------------------------------------- /src/simod/simod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/simod.py -------------------------------------------------------------------------------- /src/simod/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/simulation/parameters/BPS_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/simulation/parameters/BPS_model.py -------------------------------------------------------------------------------- /src/simod/simulation/parameters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/simod/simulation/prosimos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/simulation/prosimos.py -------------------------------------------------------------------------------- /src/simod/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/src/simod/utilities.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/Control_flow_optimization_test.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Control_flow_optimization_test.bpmn -------------------------------------------------------------------------------- /tests/assets/Control_flow_optimization_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Control_flow_optimization_test.csv -------------------------------------------------------------------------------- /tests/assets/Insurance_Claims_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Insurance_Claims_test.csv -------------------------------------------------------------------------------- /tests/assets/Insurance_Claims_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Insurance_Claims_train.csv -------------------------------------------------------------------------------- /tests/assets/LoanApp_simplified.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/LoanApp_simplified.bpmn -------------------------------------------------------------------------------- /tests/assets/LoanApp_simplified.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/LoanApp_simplified.csv.gz -------------------------------------------------------------------------------- /tests/assets/LoanApp_simplified_2.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/LoanApp_simplified_2.csv.gz -------------------------------------------------------------------------------- /tests/assets/LoanApp_simplified_without_approve_loan_offer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/LoanApp_simplified_without_approve_loan_offer.csv -------------------------------------------------------------------------------- /tests/assets/PurchasingExample.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/PurchasingExample.xes -------------------------------------------------------------------------------- /tests/assets/Resource_model_optimization_test.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Resource_model_optimization_test.bpmn -------------------------------------------------------------------------------- /tests/assets/Resource_model_optimization_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Resource_model_optimization_test.csv -------------------------------------------------------------------------------- /tests/assets/Simple_log_no_start_times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Simple_log_no_start_times.csv -------------------------------------------------------------------------------- /tests/assets/Simple_log_with_batching.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Simple_log_with_batching.csv -------------------------------------------------------------------------------- /tests/assets/Simple_log_with_prioritization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/Simple_log_with_prioritization.csv -------------------------------------------------------------------------------- /tests/assets/bpic15/BPIC15_1.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/bpic15/BPIC15_1.bpmn -------------------------------------------------------------------------------- /tests/assets/bpic15/BPIC15_1.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/bpic15/BPIC15_1.csv.gz -------------------------------------------------------------------------------- /tests/assets/bpic15/bpic15_1_with_model_v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/bpic15/bpic15_1_with_model_v4.yml -------------------------------------------------------------------------------- /tests/assets/branch_rules/or.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or.bpmn -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_1.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_1.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_2.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_2.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_3.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_3.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_4.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_4.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_5.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_5.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_6.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_6.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_7.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_7.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/or_8.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/or_8.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/xor.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/xor.bpmn -------------------------------------------------------------------------------- /tests/assets/branch_rules/xor_1.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/xor_1.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/xor_2.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/xor_2.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/xor_3.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/xor_3.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/xor_5.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/xor_5.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/xor_6.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/xor_6.csv.gz -------------------------------------------------------------------------------- /tests/assets/branch_rules/xor_7.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/branch_rules/xor_7.csv.gz -------------------------------------------------------------------------------- /tests/assets/configuration_simod_basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/configuration_simod_basic.yml -------------------------------------------------------------------------------- /tests/assets/configuration_simod_with_extraneous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/configuration_simod_with_extraneous.yml -------------------------------------------------------------------------------- /tests/assets/configuration_simod_with_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/configuration_simod_with_model.yml -------------------------------------------------------------------------------- /tests/assets/configuration_simod_with_model_and_batching.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/configuration_simod_with_model_and_batching.yml -------------------------------------------------------------------------------- /tests/assets/configuration_simod_with_model_and_extraneous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/configuration_simod_with_model_and_extraneous.yml -------------------------------------------------------------------------------- /tests/assets/configuration_simod_with_model_and_prioritization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/configuration_simod_with_model_and_prioritization.yml -------------------------------------------------------------------------------- /tests/assets/control_flow_discovery_output/model-sm2.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/control_flow_discovery_output/model-sm2.bpmn -------------------------------------------------------------------------------- /tests/assets/control_flow_discovery_output/model-sm3.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/control_flow_discovery_output/model-sm3.bpmn -------------------------------------------------------------------------------- /tests/assets/control_flow_discovery_output/model-split_miner_v1.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/control_flow_discovery_output/model-split_miner_v1.bpmn -------------------------------------------------------------------------------- /tests/assets/control_flow_discovery_output/model-split_miner_v2.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/control_flow_discovery_output/model-split_miner_v2.bpmn -------------------------------------------------------------------------------- /tests/assets/data_attributes/case_attributes.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/case_attributes.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/event_attribute_1.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/event_attribute_1.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/event_attribute_15.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/event_attribute_15.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/event_attribute_3.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/event_attribute_3.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/event_attribute_5.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/event_attribute_5.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/event_attribute_7.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/event_attribute_7.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/event_attribute_9.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/event_attribute_9.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/global_attribute_1.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/global_attribute_1.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/global_attribute_15.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/global_attribute_15.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/global_attribute_3.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/global_attribute_3.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/global_attribute_5.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/global_attribute_5.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/global_attribute_7.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/global_attribute_7.csv.gz -------------------------------------------------------------------------------- /tests/assets/data_attributes/global_attribute_9.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/data_attributes/global_attribute_9.csv.gz -------------------------------------------------------------------------------- /tests/assets/model_sequence_self_loop.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/model_sequence_self_loop.xes -------------------------------------------------------------------------------- /tests/assets/model_sequence_self_loop_only_end.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/model_sequence_self_loop_only_end.xes -------------------------------------------------------------------------------- /tests/assets/process_model_with_SplitMiner_self_loops.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/assets/process_model_with_SplitMiner_self_loops.bpmn -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_batching/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_batching/assets/LoanApp_batch_sim_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_batching/assets/LoanApp_batch_sim_log.csv -------------------------------------------------------------------------------- /tests/test_batching/assets/event_log_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_batching/assets/event_log_5.csv -------------------------------------------------------------------------------- /tests/test_batching/test_batching_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_batching/test_batching_discovery.py -------------------------------------------------------------------------------- /tests/test_batching/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_batching/test_types.py -------------------------------------------------------------------------------- /tests/test_bpic15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_bpic15.py -------------------------------------------------------------------------------- /tests/test_branch_rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_branch_rules/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_branch_rules/test_discovery.py -------------------------------------------------------------------------------- /tests/test_case_attributes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_case_attributes/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_case_attributes/test_discovery.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_control_flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_control_flow/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_control_flow/test_discovery.py -------------------------------------------------------------------------------- /tests/test_control_flow/test_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_control_flow/test_optimizer.py -------------------------------------------------------------------------------- /tests/test_data_attributes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data_attributes/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_data_attributes/test_discovery.py -------------------------------------------------------------------------------- /tests/test_event_log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_event_log/test_event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_event_log/test_event_log.py -------------------------------------------------------------------------------- /tests/test_event_log/test_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_event_log/test_preprocessor.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_prioritization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_prioritization/test_prioritization_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_prioritization/test_prioritization_discovery.py -------------------------------------------------------------------------------- /tests/test_prioritization/test_prioritization_impact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_prioritization/test_prioritization_impact.py -------------------------------------------------------------------------------- /tests/test_resource_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_resource_model/test_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_resource_model/test_optimizer.py -------------------------------------------------------------------------------- /tests/test_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_settings/test_control_flow_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_settings/test_control_flow_settings.py -------------------------------------------------------------------------------- /tests/test_settings/test_resource_model_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_settings/test_resource_model_settings.py -------------------------------------------------------------------------------- /tests/test_settings/test_simod_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_settings/test_simod_settings.py -------------------------------------------------------------------------------- /tests/test_simod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_simod.py -------------------------------------------------------------------------------- /tests/test_simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_simulation/assets/simulated_log_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_simulation/assets/simulated_log_0.csv -------------------------------------------------------------------------------- /tests/test_simulation/assets/simulated_log_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_simulation/assets/simulated_log_1.csv -------------------------------------------------------------------------------- /tests/test_simulation/assets/simulated_log_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_simulation/assets/simulated_log_2.csv -------------------------------------------------------------------------------- /tests/test_simulation/assets/validation_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_simulation/assets/validation_log.csv -------------------------------------------------------------------------------- /tests/test_simulation/test_evaluate_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_simulation/test_evaluate_logs.py -------------------------------------------------------------------------------- /tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedProcessImprovement/Simod/HEAD/tests/test_utilities.py --------------------------------------------------------------------------------