├── .clang-format ├── .emsdk-version ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── docker-builder │ │ └── action.yml └── workflows │ ├── build-device.yml │ ├── build-web.yml │ ├── ci.yml │ ├── code_coverage.yml │ ├── compare-screenshots.yml │ ├── external_apps.yml │ ├── linter.yml │ ├── metrics-build.yml │ └── metrics-comment.yml ├── .gitignore ├── .prettierrc.json ├── .tool-versions ├── Makefile ├── README.md ├── apps ├── apps_container.cpp ├── apps_container.h ├── apps_container_helper.cpp ├── apps_container_helper.h ├── apps_container_helper_tests.cpp ├── apps_container_launch_default.cpp ├── apps_container_launch_on_boarding.cpp ├── apps_container_prompt_beta.cpp ├── apps_container_prompt_none.cpp ├── apps_container_prompt_update.cpp ├── apps_container_storage.cpp ├── apps_container_storage.h ├── apps_window.cpp ├── apps_window.h ├── backlight_dimming_timer.cpp ├── backlight_dimming_timer.h ├── battery_timer.cpp ├── battery_timer.h ├── battery_view.cpp ├── battery_view.h ├── calculation │ ├── Makefile │ ├── additional_results │ │ ├── additional_result_cell.h │ │ ├── additional_results_controller.cpp │ │ ├── additional_results_controller.h │ │ ├── additional_results_type.cpp │ │ ├── additional_results_type.h │ │ ├── chainable_expressions_list_controller.h │ │ ├── chained_expressions_list_controller.cpp │ │ ├── chained_expressions_list_controller.h │ │ ├── complex_graph_cell.cpp │ │ ├── complex_graph_cell.h │ │ ├── complex_list_controller.cpp │ │ ├── complex_list_controller.h │ │ ├── complex_model.cpp │ │ ├── complex_model.h │ │ ├── expressions_list_controller.cpp │ │ ├── expressions_list_controller.h │ │ ├── function_graph_cell.cpp │ │ ├── function_graph_cell.h │ │ ├── function_list_controller.cpp │ │ ├── function_list_controller.h │ │ ├── function_model.cpp │ │ ├── function_model.h │ │ ├── i18n │ │ │ ├── unit_comparison.de.i18n │ │ │ ├── unit_comparison.en.i18n │ │ │ ├── unit_comparison.es.i18n │ │ │ ├── unit_comparison.fr.i18n │ │ │ ├── unit_comparison.it.i18n │ │ │ ├── unit_comparison.nl.i18n │ │ │ └── unit_comparison.pt.i18n │ │ ├── illustrated_expressions_list_controller.cpp │ │ ├── illustrated_expressions_list_controller.h │ │ ├── illustration_cell.cpp │ │ ├── illustration_cell.h │ │ ├── integer_list_controller.cpp │ │ ├── integer_list_controller.h │ │ ├── layout_with_equal_sign_view.cpp │ │ ├── layout_with_equal_sign_view.h │ │ ├── matrix_list_controller.cpp │ │ ├── matrix_list_controller.h │ │ ├── rational_list_controller.cpp │ │ ├── rational_list_controller.h │ │ ├── scientific_notation_list_controller.cpp │ │ ├── scientific_notation_list_controller.h │ │ ├── scrollable_three_layouts_view.cpp │ │ ├── scrollable_three_layouts_view.h │ │ ├── trigonometry_graph_cell.cpp │ │ ├── trigonometry_graph_cell.h │ │ ├── trigonometry_list_controller.cpp │ │ ├── trigonometry_list_controller.h │ │ ├── trigonometry_model.cpp │ │ ├── trigonometry_model.h │ │ ├── unit_comparison_helper.cpp │ │ ├── unit_comparison_helper.h │ │ ├── unit_list_controller.cpp │ │ ├── unit_list_controller.h │ │ ├── vector_graph_cell.cpp │ │ ├── vector_graph_cell.h │ │ ├── vector_helper.cpp │ │ ├── vector_helper.h │ │ ├── vector_list_controller.cpp │ │ ├── vector_list_controller.h │ │ ├── vector_model.cpp │ │ └── vector_model.h │ ├── app.cpp │ ├── app.h │ ├── calculation.cpp │ ├── calculation.h │ ├── calculation_icon.png │ ├── calculation_selectable_list_view.cpp │ ├── calculation_selectable_list_view.h │ ├── calculation_store.cpp │ ├── calculation_store.h │ ├── edit_expression_controller.cpp │ ├── edit_expression_controller.h │ ├── history_controller.cpp │ ├── history_controller.h │ ├── history_view_cell.cpp │ ├── history_view_cell.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ └── base.pt.i18n │ ├── layout_field.cpp │ ├── layout_field.h │ └── test │ │ └── calculation_store.cpp ├── code │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── clipboard.cpp │ ├── clipboard.h │ ├── code_icon.png │ ├── console_controller.cpp │ ├── console_controller.h │ ├── console_edit_cell.cpp │ ├── console_edit_cell.h │ ├── console_line.h │ ├── console_line_cell.cpp │ ├── console_line_cell.h │ ├── console_store.cpp │ ├── console_store.h │ ├── editor_controller.cpp │ ├── editor_controller.h │ ├── editor_view.cpp │ ├── editor_view.h │ ├── helpers.cpp │ ├── helpers.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ ├── base.universal.i18n │ │ ├── catalog.de.i18n │ │ ├── catalog.en.i18n │ │ ├── catalog.es.i18n │ │ ├── catalog.fr.i18n │ │ ├── catalog.it.i18n │ │ ├── catalog.nl.i18n │ │ ├── catalog.pt.i18n │ │ ├── catalog.universal.i18n │ │ ├── toolbox.de.i18n │ │ ├── toolbox.en.i18n │ │ ├── toolbox.es.i18n │ │ ├── toolbox.fr.i18n │ │ ├── toolbox.it.i18n │ │ ├── toolbox.nl.i18n │ │ ├── toolbox.pt.i18n │ │ └── toolbox.universal.i18n │ ├── menu_controller.cpp │ ├── menu_controller.h │ ├── python_text_area.cpp │ ├── python_text_area.h │ ├── python_toolbox_controller.cpp │ ├── python_toolbox_controller.h │ ├── python_variable_box_controller.cpp │ ├── python_variable_box_controller.h │ ├── sandbox_controller.cpp │ ├── sandbox_controller.h │ ├── script.cpp │ ├── script.h │ ├── script_name_cell.cpp │ ├── script_name_cell.h │ ├── script_node.h │ ├── script_parameter_controller.cpp │ ├── script_parameter_controller.h │ ├── script_store.cpp │ ├── script_store.h │ ├── script_template.cpp │ ├── script_template.h │ ├── subtitle_cell.cpp │ ├── subtitle_cell.h │ └── test │ │ ├── clipboard.cpp │ │ ├── python_variable_box.cpp │ │ └── templates.cpp ├── constant.h ├── country_preferences.csv ├── country_preferences.h ├── distributions │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── constants.h │ ├── controllers │ │ ├── calculation_cell.cpp │ │ ├── calculation_cell.h │ │ ├── calculation_controller.cpp │ │ ├── calculation_controller.h │ │ ├── calculation_popup_data_source.cpp │ │ ├── calculation_popup_data_source.h │ │ ├── distribution_controller.cpp │ │ ├── distribution_controller.h │ │ ├── distribution_curve_view.cpp │ │ ├── distribution_curve_view.h │ │ ├── parameters_controller.cpp │ │ └── parameters_controller.h │ ├── distributions_icon.png │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── images │ │ ├── binomial_icon.png │ │ ├── calculation1_icon.png │ │ ├── calculation2_icon.png │ │ ├── calculation3_icon.png │ │ ├── calculation4_icon.png │ │ ├── chi_squared_icon.png │ │ ├── exponential_icon.png │ │ ├── fisher_icon.png │ │ ├── focused_calcul1_icon.png │ │ ├── focused_calcul2_icon.png │ │ ├── focused_calcul3_icon.png │ │ ├── focused_calcul4_icon.png │ │ ├── geometric_icon.png │ │ ├── hypergeometric_icon.png │ │ ├── normal_icon.png │ │ ├── poisson_icon.png │ │ ├── student_icon.png │ │ └── uniform_icon.png │ ├── models │ │ ├── calculation │ │ │ ├── calculation.cpp │ │ │ ├── calculation.h │ │ │ ├── discrete_calculation.cpp │ │ │ ├── discrete_calculation.h │ │ │ ├── finite_integral_calculation.cpp │ │ │ ├── finite_integral_calculation.h │ │ │ ├── left_integral_calculation.cpp │ │ │ ├── left_integral_calculation.h │ │ │ ├── right_integral_calculation.cpp │ │ │ └── right_integral_calculation.h │ │ ├── distribution │ │ │ ├── binomial_distribution.cpp │ │ │ ├── binomial_distribution.h │ │ │ ├── chi_squared_distribution.cpp │ │ │ ├── chi_squared_distribution.h │ │ │ ├── distribution.cpp │ │ │ ├── distribution.h │ │ │ ├── exponential_distribution.cpp │ │ │ ├── exponential_distribution.h │ │ │ ├── fisher_distribution.cpp │ │ │ ├── fisher_distribution.h │ │ │ ├── geometric_distribution.h │ │ │ ├── hypergeometric_distribution.cpp │ │ │ ├── hypergeometric_distribution.h │ │ │ ├── normal_distribution.cpp │ │ │ ├── normal_distribution.h │ │ │ ├── one_parameter_distribution.h │ │ │ ├── poisson_distribution.cpp │ │ │ ├── poisson_distribution.h │ │ │ ├── student_distribution.cpp │ │ │ ├── student_distribution.h │ │ │ ├── three_parameters_distribution.h │ │ │ ├── two_parameters_distribution.h │ │ │ ├── uniform_distribution.cpp │ │ │ └── uniform_distribution.h │ │ └── distribution_buffer.h │ └── test │ │ ├── distributions_parameters.cpp │ │ └── distributions_results.cpp ├── elements │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── banner_view.cpp │ ├── banner_view.h │ ├── data_field.cpp │ ├── data_field.h │ ├── details_list_controller.cpp │ ├── details_list_controller.h │ ├── display_type_controller.cpp │ ├── display_type_controller.h │ ├── element_data.h │ ├── elements_data_base.cpp │ ├── elements_data_base.h │ ├── elements_icon.png │ ├── elements_view.cpp │ ├── elements_view.h │ ├── elements_view_data_source.cpp │ ├── elements_view_data_source.h │ ├── elements_view_delegate.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── main_controller.cpp │ ├── main_controller.h │ ├── palette.h │ ├── single_element_view.cpp │ ├── single_element_view.h │ ├── suggestion_text_field.cpp │ ├── suggestion_text_field.h │ ├── table_layout.cpp │ └── table_layout.h ├── empty_battery_window.cpp ├── empty_battery_window.h ├── exam_icon.png ├── exam_pop_up_controller.cpp ├── exam_pop_up_controller.h ├── finance │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── data.cpp │ ├── data.h │ ├── finance_icon.png │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── interest_menu_controller.cpp │ ├── interest_menu_controller.h │ ├── menu_controller.cpp │ ├── menu_controller.h │ ├── parameters_controller.cpp │ ├── parameters_controller.h │ ├── result_controller.cpp │ ├── result_controller.h │ ├── test │ │ └── finance.cpp │ └── two_messages_popup_data_source.h ├── global_preferences.cpp ├── global_preferences.h ├── graph │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── graph │ │ ├── area_between_curves_graph_controller.cpp │ │ ├── area_between_curves_graph_controller.h │ │ ├── area_between_curves_parameter_controller.cpp │ │ ├── area_between_curves_parameter_controller.h │ │ ├── banner_view.cpp │ │ ├── banner_view.h │ │ ├── calculation_graph_controller.cpp │ │ ├── calculation_graph_controller.h │ │ ├── calculation_parameter_controller.cpp │ │ ├── calculation_parameter_controller.h │ │ ├── curve_parameter_controller.cpp │ │ ├── curve_parameter_controller.h │ │ ├── extremum_graph_controller.cpp │ │ ├── extremum_graph_controller.h │ │ ├── graph_controller.cpp │ │ ├── graph_controller.h │ │ ├── graph_controller_helper.cpp │ │ ├── graph_controller_helper.h │ │ ├── graph_view.cpp │ │ ├── graph_view.h │ │ ├── integral_graph_controller.cpp │ │ ├── integral_graph_controller.h │ │ ├── interest_view.cpp │ │ ├── interest_view.h │ │ ├── intersection_graph_controller.cpp │ │ ├── intersection_graph_controller.h │ │ ├── points_of_interest_cache.cpp │ │ ├── points_of_interest_cache.h │ │ ├── preimage_graph_controller.cpp │ │ ├── preimage_graph_controller.h │ │ ├── preimage_parameter_controller.cpp │ │ ├── preimage_parameter_controller.h │ │ ├── root_graph_controller.cpp │ │ ├── root_graph_controller.h │ │ ├── tangent_graph_controller.cpp │ │ └── tangent_graph_controller.h │ ├── graph_icon.png │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ └── base.pt.i18n │ ├── list │ │ ├── editable_function_cell.cpp │ │ ├── editable_function_cell.h │ │ ├── function_cell.cpp │ │ ├── function_cell.h │ │ ├── function_models_parameter_controller.cpp │ │ ├── function_models_parameter_controller.h │ │ ├── list_controller.cpp │ │ └── list_controller.h │ ├── shared │ │ ├── derivative_column_parameter_controller.cpp │ │ ├── derivative_column_parameter_controller.h │ │ ├── derivatives_parameter_controller.cpp │ │ ├── derivatives_parameter_controller.h │ │ ├── details_parameter_controller.cpp │ │ ├── details_parameter_controller.h │ │ ├── domain_parameter_controller.cpp │ │ ├── domain_parameter_controller.h │ │ ├── function_parameter_controller.cpp │ │ └── function_parameter_controller.h │ ├── test │ │ ├── caching.cpp │ │ ├── function_names.cpp │ │ ├── function_properties.cpp │ │ ├── helper.cpp │ │ └── helper.h │ └── values │ │ ├── interval_parameter_selector_controller.cpp │ │ ├── interval_parameter_selector_controller.h │ │ ├── values_controller.cpp │ │ └── values_controller.h ├── hardware_test │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── arrow_view.cpp │ ├── arrow_view.h │ ├── battery_test_controller.cpp │ ├── battery_test_controller.h │ ├── code_128b_view.cpp │ ├── code_128b_view.h │ ├── colors_lcd_test_controller.cpp │ ├── colors_lcd_test_controller.h │ ├── dead_pixels_test_controller.cpp │ ├── dead_pixels_test_controller.h │ ├── keyboard_model.cpp │ ├── keyboard_model.h │ ├── keyboard_test_controller.cpp │ ├── keyboard_test_controller.h │ ├── keyboard_view.cpp │ ├── keyboard_view.h │ ├── lcd_data_test_controller.cpp │ ├── lcd_data_test_controller.h │ ├── lcd_timing_test_controller.cpp │ ├── lcd_timing_test_controller.h │ ├── led_test_controller.cpp │ ├── led_test_controller.h │ ├── serial_number_controller.cpp │ ├── serial_number_controller.h │ ├── vblank_test_controller.cpp │ └── vblank_test_controller.h ├── helpers.mk ├── home │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── app_cell.cpp │ ├── app_cell.h │ ├── apps_layout.csv │ ├── apps_layout.py │ ├── controller.cpp │ ├── controller.h │ └── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ └── base.pt.i18n ├── i18n.mak ├── i18n.py ├── inference │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── constants.h │ ├── controllers │ │ ├── categorical_cell.cpp │ │ ├── categorical_cell.h │ │ ├── categorical_controller.cpp │ │ ├── categorical_controller.h │ │ ├── categorical_table_cell.cpp │ │ ├── categorical_table_cell.h │ │ ├── categorical_table_view_data_source.h │ │ ├── chi_square │ │ │ ├── categorical_type_controller.cpp │ │ │ ├── categorical_type_controller.h │ │ │ ├── homogeneity_data_source.cpp │ │ │ ├── homogeneity_data_source.h │ │ │ ├── input_goodness_controller.cpp │ │ │ ├── input_goodness_controller.h │ │ │ ├── input_goodness_table_cell.cpp │ │ │ ├── input_goodness_table_cell.h │ │ │ ├── input_homogeneity_controller.cpp │ │ │ ├── input_homogeneity_controller.h │ │ │ ├── input_homogeneity_table_cell.cpp │ │ │ ├── input_homogeneity_table_cell.h │ │ │ ├── results_goodness_controller.cpp │ │ │ ├── results_goodness_controller.h │ │ │ ├── results_goodness_table_cell.cpp │ │ │ ├── results_goodness_table_cell.h │ │ │ ├── results_homogeneity_controller.cpp │ │ │ ├── results_homogeneity_controller.h │ │ │ ├── results_homogeneity_table_cell.cpp │ │ │ └── results_homogeneity_table_cell.h │ │ ├── comparison_operator_popup_data_source.cpp │ │ ├── comparison_operator_popup_data_source.h │ │ ├── confidence_interval │ │ │ ├── interval_conclusion_view.cpp │ │ │ ├── interval_conclusion_view.h │ │ │ ├── interval_curve_view.cpp │ │ │ ├── interval_curve_view.h │ │ │ ├── interval_graph_controller.cpp │ │ │ ├── interval_graph_controller.h │ │ │ ├── interval_graph_view.cpp │ │ │ └── interval_graph_view.h │ │ ├── dataset_controller.cpp │ │ ├── dataset_controller.h │ │ ├── dynamic_cells_data_source.cpp │ │ ├── dynamic_cells_data_source.h │ │ ├── input_controller.cpp │ │ ├── input_controller.h │ │ ├── results_controller.cpp │ │ ├── results_controller.h │ │ ├── significance_test │ │ │ ├── hypothesis_controller.cpp │ │ │ ├── hypothesis_controller.h │ │ │ ├── legend_view.cpp │ │ │ ├── legend_view.h │ │ │ ├── test_curve_view.cpp │ │ │ ├── test_curve_view.h │ │ │ ├── test_graph_controller.cpp │ │ │ ├── test_graph_controller.h │ │ │ ├── test_graph_view.cpp │ │ │ ├── test_graph_view.h │ │ │ ├── zoom_hint_view.cpp │ │ │ └── zoom_hint_view.h │ │ ├── store │ │ │ ├── input_store_controller.cpp │ │ │ ├── input_store_controller.h │ │ │ ├── store_column_parameter_controller.h │ │ │ ├── store_table_cell.cpp │ │ │ └── store_table_cell.h │ │ ├── test_controller.cpp │ │ ├── test_controller.h │ │ ├── type_controller.cpp │ │ └── type_controller.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── images │ │ ├── confidence_interval.png │ │ └── significance_test.png │ ├── inference_icon.png │ ├── models │ │ ├── aliases.h │ │ ├── chi2_test.cpp │ │ ├── chi2_test.h │ │ ├── confidence_interval.cpp │ │ ├── confidence_interval.h │ │ ├── goodness_test.cpp │ │ ├── goodness_test.h │ │ ├── homogeneity_test.cpp │ │ ├── homogeneity_test.h │ │ ├── inference_buffer.h │ │ ├── inference_model.cpp │ │ ├── inference_model.h │ │ ├── input_table.cpp │ │ ├── input_table.h │ │ ├── input_table_from_store.cpp │ │ ├── input_table_from_store.h │ │ ├── messages.h │ │ ├── one_mean_interval.h │ │ ├── one_mean_statistic.cpp │ │ ├── one_mean_statistic.h │ │ ├── one_mean_test.h │ │ ├── one_proportion_statistic.h │ │ ├── significance_test.cpp │ │ ├── significance_test.h │ │ ├── slope_t_statistic.cpp │ │ ├── slope_t_statistic.h │ │ ├── two_means_interval.h │ │ ├── two_means_statistic.cpp │ │ ├── two_means_statistic.h │ │ ├── two_means_test.h │ │ └── two_proportions_statistic.h │ ├── test │ │ └── inference_models.cpp │ └── text_helpers.h ├── init.cpp ├── init.h ├── init_tests.cpp ├── language_de.universal.i18n ├── language_en.universal.i18n ├── language_es.universal.i18n ├── language_fr.universal.i18n ├── language_it.universal.i18n ├── language_nl.universal.i18n ├── language_preferences.csv ├── language_pt.universal.i18n ├── lock_view.cpp ├── lock_view.h ├── main.cpp ├── math_preferences.h ├── module.mak ├── on_boarding │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ └── base.pt.i18n │ ├── localization_controller.cpp │ ├── localization_controller.h │ ├── startup_prompt_controller.cpp │ └── startup_prompt_controller.h ├── preferences_default_checker.h ├── regression │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── data │ │ ├── store_controller.cpp │ │ ├── store_controller.h │ │ ├── store_parameter_controller.cpp │ │ └── store_parameter_controller.h │ ├── graph │ │ ├── banner_view.cpp │ │ ├── banner_view.h │ │ ├── go_to_parameter_controller.cpp │ │ ├── go_to_parameter_controller.h │ │ ├── graph_controller.cpp │ │ ├── graph_controller.h │ │ ├── graph_options_controller.cpp │ │ ├── graph_options_controller.h │ │ ├── graph_view.cpp │ │ ├── graph_view.h │ │ ├── regression_controller.cpp │ │ ├── regression_controller.h │ │ ├── residual_plot_banner_view.h │ │ ├── residual_plot_controller.cpp │ │ ├── residual_plot_controller.h │ │ ├── residual_plot_curve_view.cpp │ │ ├── residual_plot_curve_view.h │ │ ├── residual_plot_range.cpp │ │ └── residual_plot_range.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── model.cpp │ ├── model.h │ ├── regression_icon.png │ ├── stats │ │ ├── calculation_controller.cpp │ │ ├── calculation_controller.h │ │ ├── column_title_cell.cpp │ │ ├── column_title_cell.h │ │ ├── even_odd_double_buffer_text_cell.cpp │ │ └── even_odd_double_buffer_text_cell.h │ ├── store.cpp │ ├── store.h │ └── test │ │ ├── graph.cpp │ │ └── model.cpp ├── sequence │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── graph │ │ ├── cobweb_controller.cpp │ │ ├── cobweb_controller.h │ │ ├── cobweb_graph_view.cpp │ │ ├── cobweb_graph_view.h │ │ ├── curve_parameter_controller.cpp │ │ ├── curve_parameter_controller.h │ │ ├── curve_view_range.cpp │ │ ├── curve_view_range.h │ │ ├── go_to_parameter_controller.cpp │ │ ├── go_to_parameter_controller.h │ │ ├── graph_controller.cpp │ │ ├── graph_controller.h │ │ ├── graph_view.cpp │ │ ├── graph_view.h │ │ ├── term_sum_controller.cpp │ │ └── term_sum_controller.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ └── base.pt.i18n │ ├── list │ │ ├── editable_sequence_cell.cpp │ │ ├── editable_sequence_cell.h │ │ ├── list_controller.cpp │ │ ├── list_controller.h │ │ ├── list_parameter_controller.cpp │ │ ├── list_parameter_controller.h │ │ ├── sequence_cell.cpp │ │ ├── sequence_cell.h │ │ ├── sequence_toolbox_data_source.cpp │ │ ├── sequence_toolbox_data_source.h │ │ ├── type_parameter_controller.cpp │ │ └── type_parameter_controller.h │ ├── sequence_icon.png │ ├── test │ │ └── sequence.cpp │ └── values │ │ ├── interval_parameter_controller.cpp │ │ ├── interval_parameter_controller.h │ │ ├── sequence_column_parameter_controller.cpp │ │ ├── sequence_column_parameter_controller.h │ │ ├── sum_column_parameter_controller.cpp │ │ ├── sum_column_parameter_controller.h │ │ ├── values_controller.cpp │ │ └── values_controller.h ├── settings │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── main_controller.cpp │ ├── main_controller.h │ ├── main_controller_prompt_beta.cpp │ ├── main_controller_prompt_none.cpp │ ├── main_controller_prompt_update.cpp │ ├── message_tree.h │ ├── settings_icon.png │ └── sub_menu │ │ ├── about_controller.cpp │ │ ├── about_controller.h │ │ ├── display_mode_controller.cpp │ │ ├── display_mode_controller.h │ │ ├── exam_mode_controller.cpp │ │ ├── exam_mode_controller.h │ │ ├── generic_sub_controller.cpp │ │ ├── generic_sub_controller.h │ │ ├── localization_controller.cpp │ │ ├── localization_controller.h │ │ ├── preferences_controller.cpp │ │ ├── preferences_controller.h │ │ ├── press_to_test_controller.cpp │ │ ├── press_to_test_controller.h │ │ ├── press_to_test_success.png │ │ ├── press_to_test_switch.h │ │ ├── screen_timeout_controller.cpp │ │ ├── screen_timeout_controller.h │ │ ├── selectable_view_with_messages.cpp │ │ ├── selectable_view_with_messages.h │ │ ├── test_mode_controller.cpp │ │ └── test_mode_controller.h ├── shared.de.i18n ├── shared.en.i18n ├── shared.es.i18n ├── shared.fr.i18n ├── shared.it.i18n ├── shared.nl.i18n ├── shared.pt.i18n ├── shared.universal.i18n ├── shared │ ├── Makefile │ ├── app_with_store_menu.cpp │ ├── app_with_store_menu.h │ ├── banner_view.cpp │ ├── banner_view.h │ ├── buffer_function_title_cell.cpp │ ├── buffer_function_title_cell.h │ ├── color_cell.cpp │ ├── color_cell.h │ ├── color_names.cpp │ ├── color_names.h │ ├── color_parameter_controller.cpp │ ├── color_parameter_controller.h │ ├── column_helper.cpp │ ├── column_helper.h │ ├── column_parameter_controller.cpp │ ├── column_parameter_controller.h │ ├── continuous_function.cpp │ ├── continuous_function.h │ ├── continuous_function_cache.cpp │ ├── continuous_function_cache.h │ ├── continuous_function_properties.cpp │ ├── continuous_function_properties.h │ ├── continuous_function_store.cpp │ ├── continuous_function_store.h │ ├── cursor_view.h │ ├── curve_selection_controller.cpp │ ├── curve_selection_controller.h │ ├── curve_view_cursor.cpp │ ├── curve_view_cursor.h │ ├── curve_view_range.cpp │ ├── curve_view_range.h │ ├── dots.cpp │ ├── dots.h │ ├── double_pair_store.cpp │ ├── double_pair_store.h │ ├── double_pair_store_preferences.h │ ├── double_pair_table_controller.cpp │ ├── double_pair_table_controller.h │ ├── editable_cell_table_view_controller.cpp │ ├── editable_cell_table_view_controller.h │ ├── editable_field_banner_view_delegate.h │ ├── expiring_pointer.h │ ├── explicit_float_parameter_controller.cpp │ ├── explicit_float_parameter_controller.h │ ├── expression_function_title_cell.cpp │ ├── expression_function_title_cell.h │ ├── expression_model.cpp │ ├── expression_model.h │ ├── expression_model_handle.cpp │ ├── expression_model_handle.h │ ├── expression_model_list_controller.cpp │ ├── expression_model_list_controller.h │ ├── expression_model_store.cpp │ ├── expression_model_store.h │ ├── expression_parameter_controller.cpp │ ├── expression_parameter_controller.h │ ├── float_parameter_controller.cpp │ ├── float_parameter_controller.h │ ├── formula_template_menu_controller.cpp │ ├── formula_template_menu_controller.h │ ├── function.cpp │ ├── function.h │ ├── function_app.cpp │ ├── function_app.h │ ├── function_banner_delegate.cpp │ ├── function_banner_delegate.h │ ├── function_go_to_parameter_controller.cpp │ ├── function_go_to_parameter_controller.h │ ├── function_graph_controller.cpp │ ├── function_graph_controller.h │ ├── function_graph_view.cpp │ ├── function_graph_view.h │ ├── function_list_controller.cpp │ ├── function_list_controller.h │ ├── function_name_helper.cpp │ ├── function_name_helper.h │ ├── function_store.h │ ├── function_title_cell.cpp │ ├── function_title_cell.h │ ├── function_zoom_and_pan_curve_view_controller.cpp │ ├── function_zoom_and_pan_curve_view_controller.h │ ├── global_context.cpp │ ├── global_context.h │ ├── go_to_parameter_controller.cpp │ ├── go_to_parameter_controller.h │ ├── grid_type_controller.cpp │ ├── grid_type_controller.h │ ├── i18n │ │ ├── colors.de.i18n │ │ ├── colors.en.i18n │ │ ├── colors.es.i18n │ │ ├── colors.fr.i18n │ │ ├── colors.it.i18n │ │ ├── colors.nl.i18n │ │ ├── colors.pt.i18n │ │ └── colors.universal.i18n │ ├── images │ │ ├── cartesian_grid_icon.png │ │ └── polar_grid_icon.png │ ├── interactive_curve_view_controller.cpp │ ├── interactive_curve_view_controller.h │ ├── interactive_curve_view_range.cpp │ ├── interactive_curve_view_range.h │ ├── interactive_curve_view_range_delegate.cpp │ ├── interactive_curve_view_range_delegate.h │ ├── interval.cpp │ ├── interval.h │ ├── interval_parameter_controller.cpp │ ├── interval_parameter_controller.h │ ├── linear_regression_store.cpp │ ├── linear_regression_store.h │ ├── list_parameter_controller.cpp │ ├── list_parameter_controller.h │ ├── localization_controller.cpp │ ├── localization_controller.h │ ├── math_app.h │ ├── math_field_delegate.cpp │ ├── math_field_delegate.h │ ├── math_toolbox_content.cpp │ ├── math_toolbox_controller.cpp │ ├── math_toolbox_controller.h │ ├── math_variable_box_controller.cpp │ ├── math_variable_box_controller.h │ ├── memoized_cursor_view.cpp │ ├── memoized_cursor_view.h │ ├── memoized_curve_view_range.cpp │ ├── memoized_curve_view_range.h │ ├── menu_controller.cpp │ ├── menu_controller.h │ ├── ok_view.cpp │ ├── ok_view.h │ ├── packed_range_1D.cpp │ ├── packed_range_1D.h │ ├── parameter_text_field_delegate.cpp │ ├── parameter_text_field_delegate.h │ ├── parameters_with_validation_controller.cpp │ ├── parameters_with_validation_controller.h │ ├── plot_view.cpp │ ├── plot_view.h │ ├── plot_view_axes.cpp │ ├── plot_view_axes.h │ ├── plot_view_banners.cpp │ ├── plot_view_banners.h │ ├── plot_view_cursors.cpp │ ├── plot_view_cursors.h │ ├── plot_view_plots.cpp │ ├── plot_view_plots.h │ ├── plot_view_policies.h │ ├── poincare_helpers.h │ ├── pop_up_controller.h │ ├── prompt_controller.cpp │ ├── prompt_controller.h │ ├── range_parameter_controller.cpp │ ├── range_parameter_controller.h │ ├── record_restrictive_extensions_helper.h │ ├── round_cursor_view.cpp │ ├── round_cursor_view.h │ ├── sequence.cpp │ ├── sequence.h │ ├── sequence_cache.cpp │ ├── sequence_cache.h │ ├── sequence_context.cpp │ ├── sequence_context.h │ ├── sequence_store.cpp │ ├── sequence_store.h │ ├── shared_app.cpp │ ├── shared_app.h │ ├── simple_interactive_curve_view_controller.cpp │ ├── simple_interactive_curve_view_controller.h │ ├── single_interactive_curve_view_range_controller.cpp │ ├── single_interactive_curve_view_range_controller.h │ ├── single_range_controller.cpp │ ├── single_range_controller.h │ ├── statistical_distribution.cpp │ ├── statistical_distribution.h │ ├── statistics_store.cpp │ ├── statistics_store.h │ ├── store_app.cpp │ ├── store_app.h │ ├── store_context.h │ ├── store_controller.cpp │ ├── store_controller.h │ ├── store_menu_controller.cpp │ ├── store_menu_controller.h │ ├── store_parameter_controller.cpp │ ├── store_parameter_controller.h │ ├── store_to_series.h │ ├── sum_graph_controller.cpp │ ├── sum_graph_controller.h │ ├── tab_table_controller.cpp │ ├── tab_table_controller.h │ ├── test │ │ ├── function_alignement.cpp │ │ └── interval.cpp │ ├── toolbox_helpers.cpp │ ├── toolbox_helpers.h │ ├── values_controller.cpp │ ├── values_controller.h │ ├── values_parameter_controller.cpp │ ├── values_parameter_controller.h │ ├── vertical_cursor_view.cpp │ ├── vertical_cursor_view.h │ ├── with_expression_cell.h │ ├── xy_banner_view.h │ ├── zoom_and_pan_curve_view_controller.cpp │ ├── zoom_and_pan_curve_view_controller.h │ ├── zoom_curve_view_controller.cpp │ └── zoom_curve_view_controller.h ├── shift_alpha_lock_view.cpp ├── shift_alpha_lock_view.h ├── solver │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── equation.cpp │ ├── equation.h │ ├── equation_list_view.cpp │ ├── equation_list_view.h │ ├── equation_models_parameter_controller.cpp │ ├── equation_models_parameter_controller.h │ ├── equation_store.cpp │ ├── equation_store.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ └── base.pt.i18n │ ├── interval_controller.cpp │ ├── interval_controller.h │ ├── list_controller.cpp │ ├── list_controller.h │ ├── solution.h │ ├── solutions_controller.cpp │ ├── solutions_controller.h │ ├── solver_context.h │ ├── solver_icon.png │ ├── system_of_equations.cpp │ ├── system_of_equations.h │ └── test │ │ ├── equation_store.cpp │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ └── solving_range.cpp ├── statistics │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── box_icon.png │ ├── cumulative_icon.png │ ├── data │ │ ├── store_controller.cpp │ │ ├── store_controller.h │ │ ├── store_parameter_controller.cpp │ │ └── store_parameter_controller.h │ ├── graph │ │ ├── banner_delegate.h │ │ ├── box_axis_view.h │ │ ├── box_banner_view.cpp │ │ ├── box_banner_view.h │ │ ├── box_controller.cpp │ │ ├── box_controller.h │ │ ├── box_parameter_controller.cpp │ │ ├── box_parameter_controller.h │ │ ├── box_range.cpp │ │ ├── box_range.h │ │ ├── box_view.cpp │ │ ├── box_view.h │ │ ├── chevrons.cpp │ │ ├── chevrons.h │ │ ├── data_view.cpp │ │ ├── data_view.h │ │ ├── data_view_controller.cpp │ │ ├── data_view_controller.h │ │ ├── frequency_controller.cpp │ │ ├── frequency_controller.h │ │ ├── graph_button_row_delegate.h │ │ ├── graph_type_controller.cpp │ │ ├── graph_type_controller.h │ │ ├── graph_view_model.cpp │ │ ├── graph_view_model.h │ │ ├── histogram_banner_view.cpp │ │ ├── histogram_banner_view.h │ │ ├── histogram_cell.cpp │ │ ├── histogram_cell.h │ │ ├── histogram_list_controller.cpp │ │ ├── histogram_list_controller.h │ │ ├── histogram_main_controller.cpp │ │ ├── histogram_main_controller.h │ │ ├── histogram_main_view.cpp │ │ ├── histogram_main_view.h │ │ ├── histogram_parameter_controller.cpp │ │ ├── histogram_parameter_controller.h │ │ ├── histogram_range.cpp │ │ ├── histogram_range.h │ │ ├── histogram_view.cpp │ │ ├── histogram_view.h │ │ ├── multiple_boxes_view.cpp │ │ ├── multiple_boxes_view.h │ │ ├── multiple_data_view.cpp │ │ ├── multiple_data_view.h │ │ ├── multiple_data_view_controller.h │ │ ├── normal_probability_controller.cpp │ │ ├── normal_probability_controller.h │ │ ├── plot_banner_view.cpp │ │ ├── plot_banner_view.h │ │ ├── plot_controller.cpp │ │ ├── plot_controller.h │ │ ├── plot_curve_view.cpp │ │ ├── plot_curve_view.h │ │ ├── plot_range.cpp │ │ ├── plot_range.h │ │ ├── plot_view.cpp │ │ └── plot_view.h │ ├── histogram_icon.png │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── stat_icon.png │ ├── statistics_normal_icon.png │ ├── stats │ │ ├── calculation_controller.cpp │ │ ├── calculation_controller.h │ │ ├── calculation_selectable_table_view.cpp │ │ └── calculation_selectable_table_view.h │ ├── store.cpp │ ├── store.h │ ├── test │ │ └── store.cpp │ └── user_preferences.h ├── suspend_timer.cpp ├── suspend_timer.h ├── title_bar_view.cpp ├── title_bar_view.h ├── toolbox.de.i18n ├── toolbox.en.i18n ├── toolbox.es.i18n ├── toolbox.fr.i18n ├── toolbox.it.i18n ├── toolbox.nl.i18n ├── toolbox.pt.i18n ├── toolbox.universal.i18n ├── usb │ ├── Makefile │ ├── app.cpp │ ├── app.h │ ├── i18n │ │ ├── base.de.i18n │ │ ├── base.en.i18n │ │ ├── base.es.i18n │ │ ├── base.fr.i18n │ │ ├── base.it.i18n │ │ ├── base.nl.i18n │ │ ├── base.pt.i18n │ │ └── base.universal.i18n │ ├── usb_connected_controller.cpp │ └── usb_connected_controller.h ├── variables.de.i18n ├── variables.en.i18n ├── variables.es.i18n ├── variables.fr.i18n ├── variables.it.i18n ├── variables.nl.i18n └── variables.pt.i18n ├── docs ├── README.md ├── architecture.svg ├── build │ ├── README.md │ ├── calculator_connected.png │ ├── official_upgrade_required.png │ └── unofficial_software.png ├── epsilon.svg ├── ion │ └── README.md └── poincare │ └── README.md ├── eadk ├── Makefile ├── README.md ├── include │ └── eadk │ │ └── eadk.h ├── module.mak └── src │ ├── linker.ld │ ├── platform.c │ ├── simulator.cpp │ ├── svc.cpp │ └── trampoline.cpp ├── escher ├── image │ ├── caret.png │ └── inliner.c ├── include │ └── escher │ │ ├── abstract_text_field.h │ │ ├── alternate_empty_nested_menu_controller.h │ │ ├── alternate_empty_view_controller.h │ │ ├── alternate_empty_view_delegate.h │ │ ├── alternate_view_controller.h │ │ ├── app.h │ │ ├── arbitrary_shaped_view.h │ │ ├── bank_view_controller.h │ │ ├── blink_timer.h │ │ ├── bordered.h │ │ ├── bordering_view.h │ │ ├── buffer_text_highlight_cell.h │ │ ├── buffer_text_view.h │ │ ├── button_cell.h │ │ ├── button_row_controller.h │ │ ├── button_state.h │ │ ├── cell_widget.h │ │ ├── chained_text_field_delegate.h │ │ ├── chevron_view.h │ │ ├── clipboard.h │ │ ├── container.h │ │ ├── context_provider.h │ │ ├── dropdown_view.h │ │ ├── dropdown_widget.h │ │ ├── editable_expression_cell.h │ │ ├── editable_expression_model_cell.h │ │ ├── editable_field.h │ │ ├── editable_field_help_box.h │ │ ├── editable_text_cell.h │ │ ├── ellipsis_view.h │ │ ├── even_odd_buffer_text_cell.h │ │ ├── even_odd_cell.h │ │ ├── even_odd_cell_with_ellipsis.h │ │ ├── even_odd_editable_text_cell.h │ │ ├── even_odd_expression_cell.h │ │ ├── even_odd_message_text_cell.h │ │ ├── explicit_list_view_data_source.h │ │ ├── expression_input_bar.h │ │ ├── gauge_view.h │ │ ├── glyphs_view.h │ │ ├── heavy_table_size_manager.h │ │ ├── highlight_cell.h │ │ ├── highlight_image_cell.h │ │ ├── horizontal_or_vertical_layout.h │ │ ├── i18n.h │ │ ├── image.h │ │ ├── image_view.h │ │ ├── init.h │ │ ├── input_view_controller.h │ │ ├── invocation.h │ │ ├── key_view.h │ │ ├── layout_field.h │ │ ├── layout_field_delegate.h │ │ ├── layout_preferences.h │ │ ├── layout_view.h │ │ ├── list_view_data_source.h │ │ ├── list_with_top_and_bottom_controller.h │ │ ├── menu_cell.h │ │ ├── menu_cell_with_editable_text.h │ │ ├── message_text_view.h │ │ ├── message_tree.h │ │ ├── message_view.h │ │ ├── metric.h │ │ ├── modal_view_controller.h │ │ ├── modal_view_empty_controller.h │ │ ├── nested_menu_controller.h │ │ ├── palette.h │ │ ├── pointer_text_view.h │ │ ├── pop_up_controller.h │ │ ├── preface_data_source.h │ │ ├── prefaced_table_view.h │ │ ├── prefaced_twice_table_view.h │ │ ├── regular_table_view_data_source.h │ │ ├── responder.h │ │ ├── run_loop.h │ │ ├── scroll_view.h │ │ ├── scroll_view_data_source.h │ │ ├── scroll_view_indicator.h │ │ ├── scrollable_layout_view.h │ │ ├── scrollable_multiple_layouts_view.h │ │ ├── scrollable_two_layouts_cell.h │ │ ├── scrollable_view.h │ │ ├── selectable_list_view.h │ │ ├── selectable_list_view_controller.h │ │ ├── selectable_list_view_data_source.h │ │ ├── selectable_list_view_delegate.h │ │ ├── selectable_table_view.h │ │ ├── selectable_table_view_data_source.h │ │ ├── selectable_table_view_delegate.h │ │ ├── solid_color_cell.h │ │ ├── solid_color_view.h │ │ ├── stack_header_view.h │ │ ├── stack_view.h │ │ ├── stack_view_controller.h │ │ ├── subapp_cell.h │ │ ├── switch_view.h │ │ ├── tab_union_view_controller.h │ │ ├── tab_view.h │ │ ├── tab_view_cell.h │ │ ├── tab_view_controller.h │ │ ├── tab_view_data_source.h │ │ ├── table_size_1D_manager.h │ │ ├── table_view.h │ │ ├── table_view_data_source.h │ │ ├── table_view_with_frozen_header.h │ │ ├── text_area.h │ │ ├── text_cursor_view.h │ │ ├── text_field.h │ │ ├── text_field_delegate.h │ │ ├── text_input.h │ │ ├── text_input_helpers.h │ │ ├── text_view.h │ │ ├── timer.h │ │ ├── toggleable_dot_view.h │ │ ├── toggleable_view.h │ │ ├── toolbox.h │ │ ├── toolbox_message_tree.h │ │ ├── transparent_image_view.h │ │ ├── unequal_view.h │ │ ├── view.h │ │ ├── view_controller.h │ │ ├── warning_controller.h │ │ └── window.h ├── module.mak ├── src │ ├── abstract_text_field.cpp │ ├── alternate_empty_nested_menu_controller.cpp │ ├── alternate_empty_view_controller.cpp │ ├── alternate_view_controller.cpp │ ├── app.cpp │ ├── bank_view_controller.cpp │ ├── blink_timer.cpp │ ├── bordered.cpp │ ├── bordering_view.cpp │ ├── buffer_text_view.cpp │ ├── button_cell.cpp │ ├── button_row_controller.cpp │ ├── button_state.cpp │ ├── chained_text_field_delegate.cpp │ ├── chevron_view.cpp │ ├── clipboard.cpp │ ├── container.cpp │ ├── dropdown_view.cpp │ ├── editable_expression_cell.cpp │ ├── editable_expression_model_cell.cpp │ ├── editable_field.cpp │ ├── editable_text_cell.cpp │ ├── ellipsis_view.cpp │ ├── even_odd_buffer_text_cell.cpp │ ├── even_odd_cell.cpp │ ├── even_odd_cell_with_ellipsis.cpp │ ├── even_odd_editable_text_cell.cpp │ ├── even_odd_expression_cell.cpp │ ├── even_odd_message_text_cell.cpp │ ├── explicit_list_view_data_source.cpp │ ├── expression_input_bar.cpp │ ├── gauge_view.cpp │ ├── glyphs_view.cpp │ ├── heavy_table_size_manager.cpp │ ├── highlight_cell.cpp │ ├── highlight_image_cell.cpp │ ├── horizontal_or_vertical_layout.cpp │ ├── image_view.cpp │ ├── init.cpp │ ├── input_view_controller.cpp │ ├── invocation.cpp │ ├── key_view.cpp │ ├── layout_field.cpp │ ├── layout_view.cpp │ ├── list_view_data_source.cpp │ ├── list_with_top_and_bottom_controller.cpp │ ├── menu_cell.cpp │ ├── menu_cell_with_editable_text.cpp │ ├── message_text_view.cpp │ ├── message_view.cpp │ ├── modal_view_controller.cpp │ ├── modal_view_empty_controller.cpp │ ├── nested_menu_controller.cpp │ ├── palette.cpp │ ├── pointer_text_view.cpp │ ├── pop_up_controller.cpp │ ├── preface_data_source.cpp │ ├── prefaced_table_view.cpp │ ├── prefaced_twice_table_view.cpp │ ├── responder.cpp │ ├── run_loop.cpp │ ├── scroll_view.cpp │ ├── scroll_view_data_source.cpp │ ├── scroll_view_indicator.cpp │ ├── scrollable_layout_view.cpp │ ├── scrollable_multiple_layouts_view.cpp │ ├── scrollable_two_layouts_cell.cpp │ ├── scrollable_view.cpp │ ├── selectable_list_view.cpp │ ├── selectable_list_view_controller.cpp │ ├── selectable_list_view_delegate.cpp │ ├── selectable_table_view.cpp │ ├── selectable_table_view_delegate.cpp │ ├── solid_color_view.cpp │ ├── stack_header_view.cpp │ ├── stack_view.cpp │ ├── stack_view_controller.cpp │ ├── subapp_cell.cpp │ ├── switch_view.cpp │ ├── tab_union_view_controller.cpp │ ├── tab_view.cpp │ ├── tab_view_cell.cpp │ ├── tab_view_controller.cpp │ ├── tab_view_data_source.cpp │ ├── table_size_1D_manager.cpp │ ├── table_view.cpp │ ├── table_view_data_source.cpp │ ├── table_view_with_frozen_header.cpp │ ├── text_area.cpp │ ├── text_cursor_view.cpp │ ├── text_input.cpp │ ├── text_input_helpers.cpp │ ├── text_view.cpp │ ├── timer.cpp │ ├── toggleable_dot_view.cpp │ ├── toggleable_view.cpp │ ├── toolbox.cpp │ ├── transparent_image_view.cpp │ ├── unequal_view.cpp │ ├── view.cpp │ ├── view_controller.cpp │ ├── warning_controller.cpp │ └── window.cpp └── test │ └── layout_field.cpp ├── external_apps ├── .gitignore ├── LICENSE ├── README.md ├── build │ └── external_app.mak ├── docs │ ├── calculator_connected.png │ └── third_party_applications.png ├── epsilon_simulators │ ├── linux │ │ └── README.md │ ├── macos │ │ └── README.md │ ├── web │ │ └── README.md │ └── windows │ │ └── README.md ├── rpn_cpp │ ├── .gitignore │ ├── Makefile │ ├── README.md │ └── src │ │ ├── converter.cpp │ │ ├── converter.h │ │ ├── eadkpp.h │ │ ├── icon.png │ │ ├── input_field.cpp │ │ ├── input_field.h │ │ ├── main.cpp │ │ ├── store.cpp │ │ ├── store.h │ │ ├── view.cpp │ │ └── view.h ├── rpn_cpp_solution │ ├── converter.cpp │ ├── input_field.cpp │ ├── input_field.h │ ├── store.cpp │ └── store.h ├── sample_c │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── doc │ │ └── screenshot.png │ └── src │ │ ├── icon.png │ │ ├── input.txt │ │ └── main.c ├── sample_cpp │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── doc │ │ └── screenshots.gif │ └── src │ │ ├── alien.cpp │ │ ├── alien.h │ │ ├── display.h │ │ ├── eadkpp.h │ │ ├── icon.png │ │ ├── life.cpp │ │ ├── life.h │ │ ├── main.cpp │ │ ├── palette.h │ │ ├── rocket.cpp │ │ ├── rocket.h │ │ ├── score.cpp │ │ ├── score.h │ │ ├── spaceship.cpp │ │ └── spaceship.h ├── sample_rust │ ├── .cargo │ │ └── config │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── doc │ │ └── screenshots.gif │ └── src │ │ ├── eadk.rs │ │ ├── icon.png │ │ └── main.rs ├── setup_web.ps1 └── setup_web.sh ├── haussmann ├── .gitignore ├── Makefile ├── README.md ├── data │ ├── Info.plist.ios │ ├── Info.plist.macos │ ├── device │ │ ├── dfu.py │ │ ├── dfu_layout.py │ │ ├── elf2dfu.py │ │ ├── elf_size_tree.py │ │ ├── gdb_script.gdb │ │ ├── immv │ │ │ ├── elf2json.py │ │ │ ├── immv.html │ │ │ ├── immv.js │ │ │ └── n0110.json │ │ ├── memory_map.awk │ │ ├── openocd.n0100.cfg │ │ ├── openocd.n0110.cfg │ │ ├── openocd.n0115.cfg │ │ ├── openocd.n0120.cfg │ │ ├── ram_map.py │ │ └── usb │ │ │ ├── __init__.py │ │ │ ├── _debug.py │ │ │ ├── _interop.py │ │ │ ├── _lookup.py │ │ │ ├── _objfinalizer.py │ │ │ ├── backend │ │ │ ├── __init__.py │ │ │ ├── libusb0.py │ │ │ ├── libusb1.py │ │ │ └── openusb.py │ │ │ ├── control.py │ │ │ ├── core.py │ │ │ ├── legacy.py │ │ │ ├── libloader.py │ │ │ └── util.py │ └── format_include_guards.py └── src │ ├── config.mak │ ├── configs │ ├── android.mak │ ├── ios.mak │ ├── linux.mak │ ├── macos.mak │ ├── n0110.mak │ ├── n0115.mak │ ├── n0120.mak │ ├── u0-discovery.mak │ ├── web.mak │ └── windows.mak │ ├── docs.mak │ ├── flavor.mak │ ├── format.mak │ ├── goal.mak │ ├── helpers.mak │ ├── module.mak │ ├── rules.mak │ ├── rules │ ├── coverage.mak │ ├── ios.mak │ ├── macos.mak │ ├── n0110.mak │ ├── n0115.mak │ ├── n0120.mak │ ├── shared.apple.mak │ ├── shared.arm-gcc.mak │ ├── tools.mak │ ├── u0-discovery.mak │ └── windows.mak │ ├── toolchain.mak │ └── toolchains │ ├── android.mak │ ├── apple.mak │ ├── arm-gcc-m0plus.mak │ ├── arm-gcc-m7f.mak │ ├── arm-gcc-m7h.mak │ ├── emscripten.mak │ ├── host-afl.mak │ ├── host-clang.mak │ ├── host-gcc.mak │ ├── shared.arm-gcc.mak │ └── windows.mak ├── ion ├── README.txt ├── android.mak ├── epsilon.device.bench.mak ├── epsilon.device.bootloader.mak ├── epsilon.device.flasher.mak ├── epsilon.device.kernel.mak ├── epsilon.device.mak ├── epsilon.device.userland.mak ├── image │ └── png_serializer.py ├── include │ ├── ion.h │ └── ion │ │ ├── authentication.h │ │ ├── backlight.h │ │ ├── battery.h │ │ ├── circuit_breaker.h │ │ ├── clipboard.h │ │ ├── console.h │ │ ├── crc.h │ │ ├── device_name.h │ │ ├── display.h │ │ ├── display_constants.h │ │ ├── events.h │ │ ├── exam_bytes.h │ │ ├── exam_mode.h │ │ ├── external_apps.h │ │ ├── keyboard.h │ │ ├── keyboard │ │ ├── epsilon │ │ │ └── ion │ │ │ │ └── keys.inc │ │ ├── event_data.h │ │ └── layout_events.h │ │ ├── led.h │ │ ├── post_and_hardware_tests.h │ │ ├── power.h │ │ ├── read_only_memory.h │ │ ├── reset.h │ │ ├── storage │ │ ├── file_system.h │ │ ├── record.h │ │ ├── record_name_verifier.h │ │ └── storage_delegate.h │ │ ├── timing.h │ │ └── usb.h ├── ios.mak ├── linux.mak ├── macos.mak ├── module.mak ├── shared.apple.mak ├── shared.simulator.mak ├── src │ ├── device │ │ ├── README.md │ │ ├── include │ │ │ ├── n0110 │ │ │ │ └── config │ │ │ │ │ ├── board.h │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── external_flash.h │ │ │ │ │ ├── internal_flash.h │ │ │ │ │ ├── otg.h │ │ │ │ │ ├── serial_number.h │ │ │ │ │ ├── timing.h │ │ │ │ │ ├── usb.h │ │ │ │ │ └── usb_userland.h │ │ │ ├── n0115 │ │ │ │ └── config │ │ │ │ │ ├── board.h │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── external_flash.h │ │ │ │ │ ├── internal_flash.h │ │ │ │ │ ├── otg.h │ │ │ │ │ ├── serial_number.h │ │ │ │ │ ├── timing.h │ │ │ │ │ ├── usb.h │ │ │ │ │ └── usb_userland.h │ │ │ └── n0120 │ │ │ │ └── config │ │ │ │ ├── board.h │ │ │ │ ├── boot.h │ │ │ │ ├── external_flash.h │ │ │ │ ├── internal_flash.h │ │ │ │ ├── otg.h │ │ │ │ ├── serial_number.h │ │ │ │ ├── timing.h │ │ │ │ ├── usb.h │ │ │ │ └── usb_userland.h │ │ ├── log.cpp │ │ ├── shared │ │ │ ├── boot │ │ │ │ ├── rt0.cpp │ │ │ │ ├── rt0.h │ │ │ │ └── ssp.c │ │ │ ├── drivers │ │ │ │ ├── assert.cpp │ │ │ │ ├── base64.cpp │ │ │ │ ├── base64.h │ │ │ │ ├── board_shared.h │ │ │ │ ├── board_unprivileged.cpp │ │ │ │ ├── console_display.cpp │ │ │ │ ├── dfu_interfaces.cpp │ │ │ │ ├── flash_information.cpp │ │ │ │ ├── flash_information.h │ │ │ │ ├── flash_write_with_interruptions.h │ │ │ │ ├── kernel_header.h │ │ │ │ ├── read_only_memory.cpp │ │ │ │ ├── serial_number.cpp │ │ │ │ ├── serial_number.h │ │ │ │ ├── svcall.h │ │ │ │ ├── trampoline.cpp │ │ │ │ ├── trampoline.h │ │ │ │ ├── usb.h │ │ │ │ ├── usb_unprivileged.cpp │ │ │ │ └── userland_header.h │ │ │ ├── flash │ │ │ │ ├── init_array.ld │ │ │ │ └── missing_slot.ld │ │ │ ├── post_and_hardware_tests.cpp │ │ │ ├── regs │ │ │ │ ├── otg.h │ │ │ │ └── register.h │ │ │ └── usb │ │ │ │ ├── calculator.cpp │ │ │ │ ├── calculator.h │ │ │ │ ├── calculator_bootloader.cpp │ │ │ │ ├── calculator_flasher_stm32f.cpp │ │ │ │ ├── calculator_flasher_stm32h.cpp │ │ │ │ ├── calculator_userland_leave.cpp │ │ │ │ ├── calculator_userland_leave_reset.cpp │ │ │ │ ├── dfu_interface.cpp │ │ │ │ ├── dfu_interface.h │ │ │ │ ├── dfu_interfaces.h │ │ │ │ ├── dfu_interfaces_helpers.h │ │ │ │ ├── dfu_xip.cpp │ │ │ │ └── stack │ │ │ │ ├── descriptor │ │ │ │ ├── bos_descriptor.cpp │ │ │ │ ├── bos_descriptor.h │ │ │ │ ├── configuration_descriptor.cpp │ │ │ │ ├── configuration_descriptor.h │ │ │ │ ├── descriptor.cpp │ │ │ │ ├── descriptor.h │ │ │ │ ├── device_capability_descriptor.cpp │ │ │ │ ├── device_capability_descriptor.h │ │ │ │ ├── device_descriptor.cpp │ │ │ │ ├── device_descriptor.h │ │ │ │ ├── dfu_functional_descriptor.cpp │ │ │ │ ├── dfu_functional_descriptor.h │ │ │ │ ├── extended_compat_id_descriptor.cpp │ │ │ │ ├── extended_compat_id_descriptor.h │ │ │ │ ├── interface_descriptor.cpp │ │ │ │ ├── interface_descriptor.h │ │ │ │ ├── language_id_string_descriptor.cpp │ │ │ │ ├── language_id_string_descriptor.h │ │ │ │ ├── microsoft_os_string_descriptor.cpp │ │ │ │ ├── microsoft_os_string_descriptor.h │ │ │ │ ├── platform_device_capability_descriptor.cpp │ │ │ │ ├── platform_device_capability_descriptor.h │ │ │ │ ├── string_descriptor.cpp │ │ │ │ ├── string_descriptor.h │ │ │ │ ├── url_descriptor.cpp │ │ │ │ ├── url_descriptor.h │ │ │ │ ├── webusb_platform_descriptor.cpp │ │ │ │ └── webusb_platform_descriptor.h │ │ │ │ ├── device.cpp │ │ │ │ ├── device.h │ │ │ │ ├── device_otg.cpp │ │ │ │ ├── device_usbfs.cpp │ │ │ │ ├── endpoint0.h │ │ │ │ ├── endpoint0_otg.cpp │ │ │ │ ├── endpoint0_usbfs.cpp │ │ │ │ ├── helpers_usbfs.h │ │ │ │ ├── interface.cpp │ │ │ │ ├── interface.h │ │ │ │ ├── request_recipient.cpp │ │ │ │ ├── request_recipient.h │ │ │ │ ├── setup_packet.cpp │ │ │ │ ├── setup_packet.h │ │ │ │ ├── streamable.cpp │ │ │ │ └── streamable.h │ │ └── userland │ │ │ ├── boot │ │ │ ├── isr.cpp │ │ │ ├── isr.h │ │ │ └── rt0.cpp │ │ │ ├── drivers │ │ │ ├── authentication.cpp │ │ │ ├── backlight.cpp │ │ │ ├── battery.cpp │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── board_dual_slots.cpp │ │ │ ├── board_ram_dfu_xip.cpp │ │ │ ├── circuit_breaker.cpp │ │ │ ├── clipboard.cpp │ │ │ ├── compilation_flags.cpp │ │ │ ├── console_dummy.cpp │ │ │ ├── crc32.cpp │ │ │ ├── device_name.cpp │ │ │ ├── display.cpp │ │ │ ├── display.h │ │ │ ├── events.cpp │ │ │ ├── exam_bytes.cpp │ │ │ ├── external_apps.cpp │ │ │ ├── fcc_id.cpp │ │ │ ├── flash_write_with_interruptions.cpp │ │ │ ├── init.cpp │ │ │ ├── keyboard.cpp │ │ │ ├── led.cpp │ │ │ ├── pcb_version.cpp │ │ │ ├── persisting_bytes.cpp │ │ │ ├── persisting_bytes.h │ │ │ ├── power.cpp │ │ │ ├── random.cpp │ │ │ ├── reset.cpp │ │ │ ├── reset.h │ │ │ ├── reset_svcall.cpp │ │ │ ├── serial_number.cpp │ │ │ ├── serial_number_svcall.cpp │ │ │ ├── stack.cpp │ │ │ ├── svcall.h │ │ │ ├── timing.cpp │ │ │ ├── usb.cpp │ │ │ ├── usb.h │ │ │ ├── usb_svcall.cpp │ │ │ └── userland_header.cpp │ │ │ └── flash │ │ │ ├── userland_A.ld │ │ │ ├── userland_B.ld │ │ │ └── userland_shared.ld │ ├── shared │ │ ├── collect_registers.cpp │ │ ├── console_line.cpp │ │ ├── display_context.cpp │ │ ├── dummy │ │ │ ├── assert.cpp │ │ │ ├── authentication.cpp │ │ │ ├── backlight.cpp │ │ │ ├── battery.cpp │ │ │ ├── circuit_breaker.cpp │ │ │ ├── clipboard.cpp │ │ │ ├── collect_registers.cpp │ │ │ ├── compilation_flags.cpp │ │ │ ├── console.cpp │ │ │ ├── display_misc.cpp │ │ │ ├── display_rect.cpp │ │ │ ├── events.cpp │ │ │ ├── exam_bytes.cpp │ │ │ ├── external_apps.cpp │ │ │ ├── fcc_id.cpp │ │ │ ├── init.cpp │ │ │ ├── keyboard.cpp │ │ │ ├── led.cpp │ │ │ ├── platform_info.cpp │ │ │ ├── post_and_hardware_tests.cpp │ │ │ ├── power.cpp │ │ │ ├── reset.cpp │ │ │ ├── stack.cpp │ │ │ ├── usb.cpp │ │ │ └── usb.h │ │ ├── events.cpp │ │ ├── events.h │ │ ├── events_benchmark.cpp │ │ ├── events_modifier.cpp │ │ ├── events_modifier.h │ │ ├── events_replay.cpp │ │ ├── exam_mode.cpp │ │ ├── init.h │ │ ├── keyboard.cpp │ │ ├── keyboard.h │ │ ├── keyboard_queue.cpp │ │ ├── keyboard_queue.h │ │ ├── layout_events │ │ │ └── epsilon │ │ │ │ ├── events_names.inc │ │ │ │ ├── events_names_extended.inc │ │ │ │ └── layout_events.cpp │ │ ├── led.h │ │ ├── ostream.cpp │ │ ├── stack_position.cpp │ │ └── storage │ │ │ ├── file_system.cpp │ │ │ ├── record.cpp │ │ │ └── record_name_verifier.cpp │ └── simulator │ │ ├── android │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ └── src │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ ├── haptics_enabled.cpp │ │ │ ├── platform_images.cpp │ │ │ └── platform_language.cpp │ │ │ ├── java │ │ │ ├── .clang-format │ │ │ ├── com │ │ │ │ └── numworks │ │ │ │ │ └── calculator │ │ │ │ │ └── EpsilonActivity.java │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── HIDDevice.java │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ └── SDLControllerManager.java │ │ │ └── res │ │ │ ├── mipmap-v26 │ │ │ └── ic_launcher.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── assets │ │ ├── epsilon │ │ │ └── background-with-shadow.webp │ │ ├── horizontal_arrow.png │ │ ├── icon_mask.svg │ │ ├── large_squircle.png │ │ ├── logo.svg │ │ ├── round.png │ │ ├── small_squircle.png │ │ └── vertical_arrow.png │ │ ├── external │ │ ├── .clang-format │ │ ├── README.md │ │ ├── SDL_config.h │ │ ├── android.mak │ │ ├── dlfcn │ │ │ ├── dlfcn.c │ │ │ └── dlfcn.h │ │ ├── ios.mak │ │ ├── linux.mak │ │ ├── macos.mak │ │ ├── module.mak │ │ ├── sdl │ │ │ ├── include │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config.h.cmake │ │ │ │ ├── SDL_config.h.in │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_os2.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_psp.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ ├── SDL_config_wiz.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_locale.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_metal.h │ │ │ │ ├── SDL_misc.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_sensor.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ └── src │ │ │ │ ├── SDL.c │ │ │ │ ├── SDL_assert.c │ │ │ │ ├── SDL_assert_c.h │ │ │ │ ├── SDL_dataqueue.c │ │ │ │ ├── SDL_dataqueue.h │ │ │ │ ├── SDL_error.c │ │ │ │ ├── SDL_error_c.h │ │ │ │ ├── SDL_hints.c │ │ │ │ ├── SDL_hints_c.h │ │ │ │ ├── SDL_internal.h │ │ │ │ ├── SDL_log.c │ │ │ │ ├── atomic │ │ │ │ ├── SDL_atomic.c │ │ │ │ └── SDL_spinlock.c │ │ │ │ ├── audio │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ ├── alsa │ │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ │ └── SDL_alsa_audio.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ │ └── SDL_androidaudio.h │ │ │ │ ├── arts │ │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ │ └── SDL_artsaudio.h │ │ │ │ ├── coreaudio │ │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ │ └── SDL_coreaudio.m │ │ │ │ ├── directsound │ │ │ │ │ ├── SDL_directsound.c │ │ │ │ │ └── SDL_directsound.h │ │ │ │ ├── disk │ │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ │ └── SDL_diskaudio.h │ │ │ │ ├── dsp │ │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ │ └── SDL_dspaudio.h │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ │ └── SDL_dummyaudio.h │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ │ ├── esd │ │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ │ └── SDL_esdaudio.h │ │ │ │ ├── fusionsound │ │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ │ └── SDL_fsaudio.h │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ │ └── SDL_haikuaudio.h │ │ │ │ ├── jack │ │ │ │ │ ├── SDL_jackaudio.c │ │ │ │ │ └── SDL_jackaudio.h │ │ │ │ ├── nacl │ │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ │ └── SDL_naclaudio.h │ │ │ │ ├── nas │ │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ │ └── SDL_nasaudio.h │ │ │ │ ├── netbsd │ │ │ │ │ ├── SDL_netbsdaudio.c │ │ │ │ │ └── SDL_netbsdaudio.h │ │ │ │ ├── openslES │ │ │ │ │ ├── SDL_openslES.c │ │ │ │ │ └── SDL_openslES.h │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_os2audio.c │ │ │ │ │ └── SDL_os2audio.h │ │ │ │ ├── paudio │ │ │ │ │ ├── SDL_paudio.c │ │ │ │ │ └── SDL_paudio.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ │ └── SDL_pspaudio.h │ │ │ │ ├── pulseaudio │ │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ │ └── SDL_pulseaudio.h │ │ │ │ ├── qsa │ │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ │ └── SDL_qsa_audio.h │ │ │ │ ├── sndio │ │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ │ └── SDL_sndioaudio.h │ │ │ │ ├── sun │ │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ │ └── SDL_sunaudio.h │ │ │ │ ├── wasapi │ │ │ │ │ ├── SDL_wasapi.c │ │ │ │ │ ├── SDL_wasapi.h │ │ │ │ │ ├── SDL_wasapi_win32.c │ │ │ │ │ └── SDL_wasapi_winrt.cpp │ │ │ │ └── winmm │ │ │ │ │ ├── SDL_winmm.c │ │ │ │ │ └── SDL_winmm.h │ │ │ │ ├── core │ │ │ │ ├── android │ │ │ │ │ ├── SDL_android.c │ │ │ │ │ ├── SDL_android.h │ │ │ │ │ └── keyinfotable.h │ │ │ │ ├── freebsd │ │ │ │ │ ├── SDL_evdev_kbd_default_keyaccmap.h │ │ │ │ │ └── SDL_evdev_kbd_freebsd.c │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_dbus.c │ │ │ │ │ ├── SDL_dbus.h │ │ │ │ │ ├── SDL_evdev.c │ │ │ │ │ ├── SDL_evdev.h │ │ │ │ │ ├── SDL_evdev_capabilities.c │ │ │ │ │ ├── SDL_evdev_capabilities.h │ │ │ │ │ ├── SDL_evdev_kbd.c │ │ │ │ │ ├── SDL_evdev_kbd.h │ │ │ │ │ ├── SDL_evdev_kbd_default_accents.h │ │ │ │ │ ├── SDL_evdev_kbd_default_keymap.h │ │ │ │ │ ├── SDL_fcitx.c │ │ │ │ │ ├── SDL_fcitx.h │ │ │ │ │ ├── SDL_ibus.c │ │ │ │ │ ├── SDL_ibus.h │ │ │ │ │ ├── SDL_ime.c │ │ │ │ │ ├── SDL_ime.h │ │ │ │ │ ├── SDL_threadprio.c │ │ │ │ │ ├── SDL_udev.c │ │ │ │ │ └── SDL_udev.h │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_os2.c │ │ │ │ │ ├── SDL_os2.h │ │ │ │ │ └── geniconv │ │ │ │ │ │ ├── geniconv.c │ │ │ │ │ │ ├── geniconv.h │ │ │ │ │ │ ├── iconv.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── os2cp.c │ │ │ │ │ │ ├── os2cp.h │ │ │ │ │ │ ├── os2iconv.c │ │ │ │ │ │ ├── sys2utf8.c │ │ │ │ │ │ └── test.c │ │ │ │ ├── unix │ │ │ │ │ ├── SDL_poll.c │ │ │ │ │ └── SDL_poll.h │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_directx.h │ │ │ │ │ ├── SDL_hid.c │ │ │ │ │ ├── SDL_hid.h │ │ │ │ │ ├── SDL_windows.c │ │ │ │ │ ├── SDL_windows.h │ │ │ │ │ ├── SDL_xinput.c │ │ │ │ │ └── SDL_xinput.h │ │ │ │ └── winrt │ │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ │ └── SDL_winrtapp_xaml.h │ │ │ │ ├── cpuinfo │ │ │ │ └── SDL_cpuinfo.c │ │ │ │ ├── dynapi │ │ │ │ ├── SDL_dynapi.c │ │ │ │ ├── SDL_dynapi.h │ │ │ │ ├── SDL_dynapi_overrides.h │ │ │ │ ├── SDL_dynapi_procs.h │ │ │ │ └── gendynapi.pl │ │ │ │ ├── events │ │ │ │ ├── SDL_clipboardevents.c │ │ │ │ ├── SDL_clipboardevents_c.h │ │ │ │ ├── SDL_displayevents.c │ │ │ │ ├── SDL_displayevents_c.h │ │ │ │ ├── SDL_dropevents.c │ │ │ │ ├── SDL_dropevents_c.h │ │ │ │ ├── SDL_events.c │ │ │ │ ├── SDL_events_c.h │ │ │ │ ├── SDL_gesture.c │ │ │ │ ├── SDL_gesture_c.h │ │ │ │ ├── SDL_keyboard.c │ │ │ │ ├── SDL_keyboard_c.h │ │ │ │ ├── SDL_mouse.c │ │ │ │ ├── SDL_mouse_c.h │ │ │ │ ├── SDL_quit.c │ │ │ │ ├── SDL_sysevents.h │ │ │ │ ├── SDL_touch.c │ │ │ │ ├── SDL_touch_c.h │ │ │ │ ├── SDL_windowevents.c │ │ │ │ ├── SDL_windowevents_c.h │ │ │ │ ├── blank_cursor.h │ │ │ │ ├── default_cursor.h │ │ │ │ ├── scancodes_darwin.h │ │ │ │ ├── scancodes_linux.h │ │ │ │ ├── scancodes_windows.h │ │ │ │ └── scancodes_xfree86.h │ │ │ │ ├── file │ │ │ │ ├── SDL_rwops.c │ │ │ │ └── cocoa │ │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ │ │ ├── filesystem │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── cocoa │ │ │ │ │ └── SDL_sysfilesystem.m │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_sysfilesystem.cpp │ │ │ │ ├── haptic │ │ │ │ ├── SDL_haptic.c │ │ │ │ ├── SDL_haptic_c.h │ │ │ │ ├── SDL_syshaptic.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ │ └── SDL_syshaptic_c.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ │ └── SDL_syshaptic_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputhaptic.c │ │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ │ └── SDL_xinputhaptic_c.h │ │ │ │ ├── hidapi │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── HACKING.txt │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── SDL_hidapi.c │ │ │ │ ├── android │ │ │ │ │ ├── hid.cpp │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ ├── bootstrap │ │ │ │ ├── configure.ac │ │ │ │ ├── doxygen │ │ │ │ │ └── Doxyfile │ │ │ │ ├── hidapi │ │ │ │ │ └── hidapi.h │ │ │ │ ├── hidtest │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hidtest.cpp │ │ │ │ ├── ios │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hid.m │ │ │ │ ├── libusb │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── hid.c │ │ │ │ │ └── hidusb.cpp │ │ │ │ ├── linux │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── hid.c │ │ │ │ │ ├── hid.cpp │ │ │ │ │ └── hidraw.cpp │ │ │ │ ├── m4 │ │ │ │ │ ├── ax_pthread.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── mac │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hid.c │ │ │ │ ├── pc │ │ │ │ │ ├── hidapi-hidraw.pc.in │ │ │ │ │ ├── hidapi-libusb.pc.in │ │ │ │ │ └── hidapi.pc.in │ │ │ │ ├── testgui │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── Makefile.mac │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── TestGUI.app.in │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ └── Signal11.icns │ │ │ │ │ ├── copy_to_bundle.sh │ │ │ │ │ ├── mac_support.cpp │ │ │ │ │ ├── mac_support.h │ │ │ │ │ ├── mac_support_cocoa.m │ │ │ │ │ ├── start.sh │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── testgui.sln │ │ │ │ │ └── testgui.vcproj │ │ │ │ ├── udev │ │ │ │ │ └── 99-hid.rules │ │ │ │ └── windows │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── ddk_build │ │ │ │ │ ├── hidapi.def │ │ │ │ │ ├── makefile │ │ │ │ │ └── sources │ │ │ │ │ ├── hid.c │ │ │ │ │ ├── hidapi.sln │ │ │ │ │ ├── hidapi.vcproj │ │ │ │ │ └── hidtest.vcproj │ │ │ │ ├── joystick │ │ │ │ ├── SDL_gamecontroller.c │ │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ │ ├── SDL_joystick.c │ │ │ │ ├── SDL_joystick_c.h │ │ │ │ ├── SDL_sysjoystick.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── bsd │ │ │ │ │ └── SDL_bsdjoystick.c │ │ │ │ ├── check_8bitdo.sh │ │ │ │ ├── controller_type.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_iokitjoystick.c │ │ │ │ │ └── SDL_iokitjoystick_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_haikujoystick.cc │ │ │ │ ├── hidapi │ │ │ │ │ ├── SDL_hidapi_gamecube.c │ │ │ │ │ ├── SDL_hidapi_ps4.c │ │ │ │ │ ├── SDL_hidapi_ps5.c │ │ │ │ │ ├── SDL_hidapi_rumble.c │ │ │ │ │ ├── SDL_hidapi_rumble.h │ │ │ │ │ ├── SDL_hidapi_steam.c │ │ │ │ │ ├── SDL_hidapi_switch.c │ │ │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ │ │ ├── SDL_hidapi_xbox360w.c │ │ │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ │ │ ├── SDL_hidapijoystick.c │ │ │ │ │ ├── SDL_hidapijoystick_c.h │ │ │ │ │ └── steam │ │ │ │ │ │ ├── controller_constants.h │ │ │ │ │ │ └── controller_structs.h │ │ │ │ ├── iphoneos │ │ │ │ │ ├── SDL_mfijoystick.m │ │ │ │ │ └── SDL_mfijoystick_c.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── sort_controllers.py │ │ │ │ ├── steam │ │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ │ └── SDL_steamcontroller.h │ │ │ │ ├── usb_ids.h │ │ │ │ ├── virtual │ │ │ │ │ ├── SDL_virtualjoystick.c │ │ │ │ │ └── SDL_virtualjoystick_c.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ │ ├── SDL_rawinputjoystick.c │ │ │ │ │ ├── SDL_rawinputjoystick_c.h │ │ │ │ │ ├── SDL_windows_gaming_input.c │ │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ │ ├── libm │ │ │ │ ├── e_atan2.c │ │ │ │ ├── e_exp.c │ │ │ │ ├── e_fmod.c │ │ │ │ ├── e_log.c │ │ │ │ ├── e_log10.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── k_tan.c │ │ │ │ ├── math_libm.h │ │ │ │ ├── math_private.h │ │ │ │ ├── s_atan.c │ │ │ │ ├── s_copysign.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_sin.c │ │ │ │ └── s_tan.c │ │ │ │ ├── loadso │ │ │ │ ├── dlopen │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── locale │ │ │ │ ├── SDL_locale.c │ │ │ │ ├── SDL_syslocale.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syslocale.cc │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_syslocale.m │ │ │ │ ├── unix │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── main │ │ │ │ ├── android │ │ │ │ │ └── SDL_android_main.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_dummy_main.c │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_BApp.h │ │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ │ └── SDL_BeApp.h │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_nacl_main.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_psp_main.c │ │ │ │ ├── uikit │ │ │ │ │ └── SDL_uikit_main.c │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_windows_main.c │ │ │ │ │ └── version.rc │ │ │ │ └── winrt │ │ │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ │ │ ├── SDL2-WinRTResources.rc │ │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ │ │ ├── misc │ │ │ │ ├── SDL_sysurl.h │ │ │ │ ├── SDL_url.c │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysurl.cc │ │ │ │ ├── ios │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── riscos │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_sysurl.cpp │ │ │ │ ├── power │ │ │ │ ├── SDL_power.c │ │ │ │ ├── SDL_syspower.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── uikit │ │ │ │ │ ├── SDL_syspower.h │ │ │ │ │ └── SDL_syspower.m │ │ │ │ ├── windows │ │ │ │ │ └── SDL_syspower.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_syspower.cpp │ │ │ │ ├── render │ │ │ │ ├── SDL_d3dmath.c │ │ │ │ ├── SDL_d3dmath.h │ │ │ │ ├── SDL_render.c │ │ │ │ ├── SDL_sysrender.h │ │ │ │ ├── SDL_yuv_sw.c │ │ │ │ ├── SDL_yuv_sw_c.h │ │ │ │ ├── direct3d │ │ │ │ │ ├── SDL_render_d3d.c │ │ │ │ │ ├── SDL_shaders_d3d.c │ │ │ │ │ └── SDL_shaders_d3d.h │ │ │ │ ├── direct3d11 │ │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ │ ├── SDL_render_winrt.h │ │ │ │ │ ├── SDL_shaders_d3d11.c │ │ │ │ │ └── SDL_shaders_d3d11.h │ │ │ │ ├── metal │ │ │ │ │ ├── SDL_render_metal.m │ │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ │ ├── SDL_shaders_metal_iphonesimulator.h │ │ │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ │ │ ├── SDL_shaders_metal_tvsimulator.h │ │ │ │ │ └── build-metal-shaders.sh │ │ │ │ ├── opengl │ │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ │ ├── SDL_render_gl.c │ │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ │ └── SDL_shaders_gl.h │ │ │ │ ├── opengles │ │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ │ └── SDL_render_gles.c │ │ │ │ ├── opengles2 │ │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ │ └── SDL_shaders_gles2.h │ │ │ │ ├── psp │ │ │ │ │ └── SDL_render_psp.c │ │ │ │ └── software │ │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ │ ├── SDL_blendline.c │ │ │ │ │ ├── SDL_blendline.h │ │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ │ ├── SDL_draw.h │ │ │ │ │ ├── SDL_drawline.c │ │ │ │ │ ├── SDL_drawline.h │ │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ │ ├── SDL_render_sw.c │ │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ │ ├── SDL_rotate.c │ │ │ │ │ └── SDL_rotate.h │ │ │ │ ├── sensor │ │ │ │ ├── SDL_sensor.c │ │ │ │ ├── SDL_sensor_c.h │ │ │ │ ├── SDL_syssensor.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidsensor.c │ │ │ │ │ └── SDL_androidsensor.h │ │ │ │ ├── coremotion │ │ │ │ │ ├── SDL_coremotionsensor.h │ │ │ │ │ └── SDL_coremotionsensor.m │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummysensor.c │ │ │ │ │ └── SDL_dummysensor.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_windowssensor.c │ │ │ │ │ └── SDL_windowssensor.h │ │ │ │ ├── stdlib │ │ │ │ ├── SDL_crc32.c │ │ │ │ ├── SDL_getenv.c │ │ │ │ ├── SDL_iconv.c │ │ │ │ ├── SDL_malloc.c │ │ │ │ ├── SDL_qsort.c │ │ │ │ ├── SDL_stdlib.c │ │ │ │ ├── SDL_string.c │ │ │ │ └── SDL_strtokr.c │ │ │ │ ├── test │ │ │ │ ├── SDL_test_assert.c │ │ │ │ ├── SDL_test_common.c │ │ │ │ ├── SDL_test_compare.c │ │ │ │ ├── SDL_test_crc32.c │ │ │ │ ├── SDL_test_font.c │ │ │ │ ├── SDL_test_fuzzer.c │ │ │ │ ├── SDL_test_harness.c │ │ │ │ ├── SDL_test_imageBlit.c │ │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ │ ├── SDL_test_imageFace.c │ │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ │ ├── SDL_test_log.c │ │ │ │ ├── SDL_test_md5.c │ │ │ │ ├── SDL_test_memory.c │ │ │ │ └── SDL_test_random.c │ │ │ │ ├── thread │ │ │ │ ├── SDL_systhread.h │ │ │ │ ├── SDL_thread.c │ │ │ │ ├── SDL_thread_c.h │ │ │ │ ├── generic │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ ├── SDL_systls.c │ │ │ │ │ └── SDL_systls_c.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── pthread │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── stdcpp │ │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── timer │ │ │ │ ├── SDL_timer.c │ │ │ │ ├── SDL_timer_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── video │ │ │ │ ├── SDL_RLEaccel.c │ │ │ │ ├── SDL_RLEaccel_c.h │ │ │ │ ├── SDL_blit.c │ │ │ │ ├── SDL_blit.h │ │ │ │ ├── SDL_blit_0.c │ │ │ │ ├── SDL_blit_1.c │ │ │ │ ├── SDL_blit_A.c │ │ │ │ ├── SDL_blit_N.c │ │ │ │ ├── SDL_blit_auto.c │ │ │ │ ├── SDL_blit_auto.h │ │ │ │ ├── SDL_blit_copy.c │ │ │ │ ├── SDL_blit_copy.h │ │ │ │ ├── SDL_blit_slow.c │ │ │ │ ├── SDL_blit_slow.h │ │ │ │ ├── SDL_bmp.c │ │ │ │ ├── SDL_clipboard.c │ │ │ │ ├── SDL_egl.c │ │ │ │ ├── SDL_egl_c.h │ │ │ │ ├── SDL_fillrect.c │ │ │ │ ├── SDL_pixels.c │ │ │ │ ├── SDL_pixels_c.h │ │ │ │ ├── SDL_rect.c │ │ │ │ ├── SDL_rect_c.h │ │ │ │ ├── SDL_shape.c │ │ │ │ ├── SDL_shape_internals.h │ │ │ │ ├── SDL_stretch.c │ │ │ │ ├── SDL_surface.c │ │ │ │ ├── SDL_sysvideo.h │ │ │ │ ├── SDL_video.c │ │ │ │ ├── SDL_vulkan_internal.h │ │ │ │ ├── SDL_vulkan_utils.c │ │ │ │ ├── SDL_yuv.c │ │ │ │ ├── SDL_yuv_c.h │ │ │ │ ├── android │ │ │ │ ├── SDL_androidclipboard.c │ │ │ │ ├── SDL_androidclipboard.h │ │ │ │ ├── SDL_androidevents.c │ │ │ │ ├── SDL_androidevents.h │ │ │ │ ├── SDL_androidgl.c │ │ │ │ ├── SDL_androidgl.h │ │ │ │ ├── SDL_androidkeyboard.c │ │ │ │ ├── SDL_androidkeyboard.h │ │ │ │ ├── SDL_androidmessagebox.c │ │ │ │ ├── SDL_androidmessagebox.h │ │ │ │ ├── SDL_androidmouse.c │ │ │ │ ├── SDL_androidmouse.h │ │ │ │ ├── SDL_androidtouch.c │ │ │ │ ├── SDL_androidtouch.h │ │ │ │ ├── SDL_androidvideo.c │ │ │ │ ├── SDL_androidvideo.h │ │ │ │ ├── SDL_androidvulkan.c │ │ │ │ ├── SDL_androidvulkan.h │ │ │ │ ├── SDL_androidwindow.c │ │ │ │ └── SDL_androidwindow.h │ │ │ │ ├── arm │ │ │ │ ├── pixman-arm-asm.h │ │ │ │ ├── pixman-arm-neon-asm.S │ │ │ │ ├── pixman-arm-neon-asm.h │ │ │ │ ├── pixman-arm-simd-asm.S │ │ │ │ └── pixman-arm-simd-asm.h │ │ │ │ ├── cocoa │ │ │ │ ├── SDL_cocoaclipboard.h │ │ │ │ ├── SDL_cocoaclipboard.m │ │ │ │ ├── SDL_cocoaevents.h │ │ │ │ ├── SDL_cocoaevents.m │ │ │ │ ├── SDL_cocoakeyboard.h │ │ │ │ ├── SDL_cocoakeyboard.m │ │ │ │ ├── SDL_cocoamessagebox.h │ │ │ │ ├── SDL_cocoamessagebox.m │ │ │ │ ├── SDL_cocoametalview.h │ │ │ │ ├── SDL_cocoametalview.m │ │ │ │ ├── SDL_cocoamodes.h │ │ │ │ ├── SDL_cocoamodes.m │ │ │ │ ├── SDL_cocoamouse.h │ │ │ │ ├── SDL_cocoamouse.m │ │ │ │ ├── SDL_cocoamousetap.h │ │ │ │ ├── SDL_cocoamousetap.m │ │ │ │ ├── SDL_cocoaopengl.h │ │ │ │ ├── SDL_cocoaopengl.m │ │ │ │ ├── SDL_cocoaopengles.h │ │ │ │ ├── SDL_cocoaopengles.m │ │ │ │ ├── SDL_cocoashape.h │ │ │ │ ├── SDL_cocoashape.m │ │ │ │ ├── SDL_cocoavideo.h │ │ │ │ ├── SDL_cocoavideo.m │ │ │ │ ├── SDL_cocoavulkan.h │ │ │ │ ├── SDL_cocoavulkan.m │ │ │ │ ├── SDL_cocoawindow.h │ │ │ │ └── SDL_cocoawindow.m │ │ │ │ ├── directfb │ │ │ │ ├── SDL_DirectFB_WM.c │ │ │ │ ├── SDL_DirectFB_WM.h │ │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ │ ├── SDL_DirectFB_events.c │ │ │ │ ├── SDL_DirectFB_events.h │ │ │ │ ├── SDL_DirectFB_modes.c │ │ │ │ ├── SDL_DirectFB_modes.h │ │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ │ ├── SDL_DirectFB_render.c │ │ │ │ ├── SDL_DirectFB_render.h │ │ │ │ ├── SDL_DirectFB_shape.c │ │ │ │ ├── SDL_DirectFB_shape.h │ │ │ │ ├── SDL_DirectFB_video.c │ │ │ │ ├── SDL_DirectFB_video.h │ │ │ │ ├── SDL_DirectFB_vulkan.c │ │ │ │ ├── SDL_DirectFB_vulkan.h │ │ │ │ ├── SDL_DirectFB_window.c │ │ │ │ └── SDL_DirectFB_window.h │ │ │ │ ├── dummy │ │ │ │ ├── SDL_nullevents.c │ │ │ │ ├── SDL_nullevents_c.h │ │ │ │ ├── SDL_nullframebuffer.c │ │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ │ ├── SDL_nullvideo.c │ │ │ │ └── SDL_nullvideo.h │ │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenevents.c │ │ │ │ ├── SDL_emscriptenevents.h │ │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ │ ├── SDL_emscriptenmouse.c │ │ │ │ ├── SDL_emscriptenmouse.h │ │ │ │ ├── SDL_emscriptenopengles.c │ │ │ │ ├── SDL_emscriptenopengles.h │ │ │ │ ├── SDL_emscriptenvideo.c │ │ │ │ └── SDL_emscriptenvideo.h │ │ │ │ ├── haiku │ │ │ │ ├── SDL_BWin.h │ │ │ │ ├── SDL_bclipboard.cc │ │ │ │ ├── SDL_bclipboard.h │ │ │ │ ├── SDL_bevents.cc │ │ │ │ ├── SDL_bevents.h │ │ │ │ ├── SDL_bframebuffer.cc │ │ │ │ ├── SDL_bframebuffer.h │ │ │ │ ├── SDL_bkeyboard.cc │ │ │ │ ├── SDL_bkeyboard.h │ │ │ │ ├── SDL_bmessagebox.cc │ │ │ │ ├── SDL_bmessagebox.h │ │ │ │ ├── SDL_bmodes.cc │ │ │ │ ├── SDL_bmodes.h │ │ │ │ ├── SDL_bopengl.cc │ │ │ │ ├── SDL_bopengl.h │ │ │ │ ├── SDL_bvideo.cc │ │ │ │ ├── SDL_bvideo.h │ │ │ │ ├── SDL_bwindow.cc │ │ │ │ └── SDL_bwindow.h │ │ │ │ ├── khronos │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ ├── GLES2 │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ └── gl2platform.h │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ └── vulkan │ │ │ │ │ ├── vk_icd.h │ │ │ │ │ ├── vk_layer.h │ │ │ │ │ ├── vk_platform.h │ │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ │ ├── vulkan.h │ │ │ │ │ ├── vulkan.hpp │ │ │ │ │ ├── vulkan_android.h │ │ │ │ │ ├── vulkan_beta.h │ │ │ │ │ ├── vulkan_core.h │ │ │ │ │ ├── vulkan_directfb.h │ │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ │ ├── vulkan_ggp.h │ │ │ │ │ ├── vulkan_ios.h │ │ │ │ │ ├── vulkan_macos.h │ │ │ │ │ ├── vulkan_metal.h │ │ │ │ │ ├── vulkan_vi.h │ │ │ │ │ ├── vulkan_wayland.h │ │ │ │ │ ├── vulkan_win32.h │ │ │ │ │ ├── vulkan_xcb.h │ │ │ │ │ ├── vulkan_xlib.h │ │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ │ ├── kmsdrm │ │ │ │ ├── SDL_kmsdrmdyn.c │ │ │ │ ├── SDL_kmsdrmdyn.h │ │ │ │ ├── SDL_kmsdrmevents.c │ │ │ │ ├── SDL_kmsdrmevents.h │ │ │ │ ├── SDL_kmsdrmmouse.c │ │ │ │ ├── SDL_kmsdrmmouse.h │ │ │ │ ├── SDL_kmsdrmopengles.c │ │ │ │ ├── SDL_kmsdrmopengles.h │ │ │ │ ├── SDL_kmsdrmsym.h │ │ │ │ ├── SDL_kmsdrmvideo.c │ │ │ │ ├── SDL_kmsdrmvideo.h │ │ │ │ ├── SDL_kmsdrmvulkan.c │ │ │ │ └── SDL_kmsdrmvulkan.h │ │ │ │ ├── kmsdrm_legacy │ │ │ │ ├── SDL_kmsdrm_legacy_dyn.c │ │ │ │ ├── SDL_kmsdrm_legacy_dyn.h │ │ │ │ ├── SDL_kmsdrm_legacy_events.c │ │ │ │ ├── SDL_kmsdrm_legacy_events.h │ │ │ │ ├── SDL_kmsdrm_legacy_mouse.c │ │ │ │ ├── SDL_kmsdrm_legacy_mouse.h │ │ │ │ ├── SDL_kmsdrm_legacy_opengles.c │ │ │ │ ├── SDL_kmsdrm_legacy_opengles.h │ │ │ │ ├── SDL_kmsdrm_legacy_sym.h │ │ │ │ ├── SDL_kmsdrm_legacy_video.c │ │ │ │ └── SDL_kmsdrm_legacy_video.h │ │ │ │ ├── nacl │ │ │ │ ├── SDL_naclevents.c │ │ │ │ ├── SDL_naclevents_c.h │ │ │ │ ├── SDL_naclglue.c │ │ │ │ ├── SDL_naclopengles.c │ │ │ │ ├── SDL_naclopengles.h │ │ │ │ ├── SDL_naclvideo.c │ │ │ │ ├── SDL_naclvideo.h │ │ │ │ ├── SDL_naclwindow.c │ │ │ │ └── SDL_naclwindow.h │ │ │ │ ├── offscreen │ │ │ │ ├── SDL_offscreenevents.c │ │ │ │ ├── SDL_offscreenevents_c.h │ │ │ │ ├── SDL_offscreenframebuffer.c │ │ │ │ ├── SDL_offscreenframebuffer_c.h │ │ │ │ ├── SDL_offscreenopengl.c │ │ │ │ ├── SDL_offscreenopengl.h │ │ │ │ ├── SDL_offscreenvideo.c │ │ │ │ ├── SDL_offscreenvideo.h │ │ │ │ ├── SDL_offscreenwindow.c │ │ │ │ └── SDL_offscreenwindow.h │ │ │ │ ├── os2 │ │ │ │ ├── SDL_os2dive.c │ │ │ │ ├── SDL_os2messagebox.c │ │ │ │ ├── SDL_os2messagebox.h │ │ │ │ ├── SDL_os2mouse.c │ │ │ │ ├── SDL_os2mouse.h │ │ │ │ ├── SDL_os2output.h │ │ │ │ ├── SDL_os2util.c │ │ │ │ ├── SDL_os2util.h │ │ │ │ ├── SDL_os2video.c │ │ │ │ ├── SDL_os2video.h │ │ │ │ ├── SDL_os2vman.c │ │ │ │ └── my_gradd.h │ │ │ │ ├── pandora │ │ │ │ ├── SDL_pandora.c │ │ │ │ ├── SDL_pandora.h │ │ │ │ ├── SDL_pandora_events.c │ │ │ │ └── SDL_pandora_events.h │ │ │ │ ├── psp │ │ │ │ ├── SDL_pspevents.c │ │ │ │ ├── SDL_pspevents_c.h │ │ │ │ ├── SDL_pspgl.c │ │ │ │ ├── SDL_pspgl_c.h │ │ │ │ ├── SDL_pspmouse.c │ │ │ │ ├── SDL_pspmouse_c.h │ │ │ │ ├── SDL_pspvideo.c │ │ │ │ └── SDL_pspvideo.h │ │ │ │ ├── qnx │ │ │ │ ├── gl.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── sdl_qnx.h │ │ │ │ └── video.c │ │ │ │ ├── raspberry │ │ │ │ ├── SDL_rpievents.c │ │ │ │ ├── SDL_rpievents_c.h │ │ │ │ ├── SDL_rpimouse.c │ │ │ │ ├── SDL_rpimouse.h │ │ │ │ ├── SDL_rpiopengles.c │ │ │ │ ├── SDL_rpiopengles.h │ │ │ │ ├── SDL_rpivideo.c │ │ │ │ └── SDL_rpivideo.h │ │ │ │ ├── sdlgenblit.pl │ │ │ │ ├── uikit │ │ │ │ ├── SDL_uikitappdelegate.h │ │ │ │ ├── SDL_uikitappdelegate.m │ │ │ │ ├── SDL_uikitclipboard.h │ │ │ │ ├── SDL_uikitclipboard.m │ │ │ │ ├── SDL_uikitevents.h │ │ │ │ ├── SDL_uikitevents.m │ │ │ │ ├── SDL_uikitmessagebox.h │ │ │ │ ├── SDL_uikitmessagebox.m │ │ │ │ ├── SDL_uikitmetalview.h │ │ │ │ ├── SDL_uikitmetalview.m │ │ │ │ ├── SDL_uikitmodes.h │ │ │ │ ├── SDL_uikitmodes.m │ │ │ │ ├── SDL_uikitopengles.h │ │ │ │ ├── SDL_uikitopengles.m │ │ │ │ ├── SDL_uikitopenglview.h │ │ │ │ ├── SDL_uikitopenglview.m │ │ │ │ ├── SDL_uikitvideo.h │ │ │ │ ├── SDL_uikitvideo.m │ │ │ │ ├── SDL_uikitview.h │ │ │ │ ├── SDL_uikitview.m │ │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ │ ├── SDL_uikitvulkan.h │ │ │ │ ├── SDL_uikitvulkan.m │ │ │ │ ├── SDL_uikitwindow.h │ │ │ │ ├── SDL_uikitwindow.m │ │ │ │ └── keyinfotable.h │ │ │ │ ├── vivante │ │ │ │ ├── SDL_vivanteopengles.c │ │ │ │ ├── SDL_vivanteopengles.h │ │ │ │ ├── SDL_vivanteplatform.c │ │ │ │ ├── SDL_vivanteplatform.h │ │ │ │ ├── SDL_vivantevideo.c │ │ │ │ ├── SDL_vivantevideo.h │ │ │ │ ├── SDL_vivantevulkan.c │ │ │ │ └── SDL_vivantevulkan.h │ │ │ │ ├── wayland │ │ │ │ ├── SDL_waylandclipboard.c │ │ │ │ ├── SDL_waylandclipboard.h │ │ │ │ ├── SDL_waylanddatamanager.c │ │ │ │ ├── SDL_waylanddatamanager.h │ │ │ │ ├── SDL_waylanddyn.c │ │ │ │ ├── SDL_waylanddyn.h │ │ │ │ ├── SDL_waylandevents.c │ │ │ │ ├── SDL_waylandevents_c.h │ │ │ │ ├── SDL_waylandmouse.c │ │ │ │ ├── SDL_waylandmouse.h │ │ │ │ ├── SDL_waylandopengles.c │ │ │ │ ├── SDL_waylandopengles.h │ │ │ │ ├── SDL_waylandsym.h │ │ │ │ ├── SDL_waylandtouch.c │ │ │ │ ├── SDL_waylandtouch.h │ │ │ │ ├── SDL_waylandvideo.c │ │ │ │ ├── SDL_waylandvideo.h │ │ │ │ ├── SDL_waylandvulkan.c │ │ │ │ ├── SDL_waylandvulkan.h │ │ │ │ ├── SDL_waylandwindow.c │ │ │ │ └── SDL_waylandwindow.h │ │ │ │ ├── windows │ │ │ │ ├── SDL_msctf.h │ │ │ │ ├── SDL_vkeys.h │ │ │ │ ├── SDL_windowsclipboard.c │ │ │ │ ├── SDL_windowsclipboard.h │ │ │ │ ├── SDL_windowsevents.c │ │ │ │ ├── SDL_windowsevents.h │ │ │ │ ├── SDL_windowsframebuffer.c │ │ │ │ ├── SDL_windowsframebuffer.h │ │ │ │ ├── SDL_windowskeyboard.c │ │ │ │ ├── SDL_windowskeyboard.h │ │ │ │ ├── SDL_windowsmessagebox.c │ │ │ │ ├── SDL_windowsmessagebox.h │ │ │ │ ├── SDL_windowsmodes.c │ │ │ │ ├── SDL_windowsmodes.h │ │ │ │ ├── SDL_windowsmouse.c │ │ │ │ ├── SDL_windowsmouse.h │ │ │ │ ├── SDL_windowsopengl.c │ │ │ │ ├── SDL_windowsopengl.h │ │ │ │ ├── SDL_windowsopengles.c │ │ │ │ ├── SDL_windowsopengles.h │ │ │ │ ├── SDL_windowsshape.c │ │ │ │ ├── SDL_windowsshape.h │ │ │ │ ├── SDL_windowstaskdialog.h │ │ │ │ ├── SDL_windowsvideo.c │ │ │ │ ├── SDL_windowsvideo.h │ │ │ │ ├── SDL_windowsvulkan.c │ │ │ │ ├── SDL_windowsvulkan.h │ │ │ │ ├── SDL_windowswindow.c │ │ │ │ ├── SDL_windowswindow.h │ │ │ │ └── wmmsg.h │ │ │ │ ├── winrt │ │ │ │ ├── SDL_winrtevents.cpp │ │ │ │ ├── SDL_winrtevents_c.h │ │ │ │ ├── SDL_winrtgamebar.cpp │ │ │ │ ├── SDL_winrtgamebar_cpp.h │ │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ │ ├── SDL_winrtmessagebox.h │ │ │ │ ├── SDL_winrtmouse.cpp │ │ │ │ ├── SDL_winrtmouse_c.h │ │ │ │ ├── SDL_winrtopengles.cpp │ │ │ │ ├── SDL_winrtopengles.h │ │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ │ ├── SDL_winrtvideo.cpp │ │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ │ ├── x11 │ │ │ │ ├── SDL_x11clipboard.c │ │ │ │ ├── SDL_x11clipboard.h │ │ │ │ ├── SDL_x11dyn.c │ │ │ │ ├── SDL_x11dyn.h │ │ │ │ ├── SDL_x11events.c │ │ │ │ ├── SDL_x11events.h │ │ │ │ ├── SDL_x11framebuffer.c │ │ │ │ ├── SDL_x11framebuffer.h │ │ │ │ ├── SDL_x11keyboard.c │ │ │ │ ├── SDL_x11keyboard.h │ │ │ │ ├── SDL_x11messagebox.c │ │ │ │ ├── SDL_x11messagebox.h │ │ │ │ ├── SDL_x11modes.c │ │ │ │ ├── SDL_x11modes.h │ │ │ │ ├── SDL_x11mouse.c │ │ │ │ ├── SDL_x11mouse.h │ │ │ │ ├── SDL_x11opengl.c │ │ │ │ ├── SDL_x11opengl.h │ │ │ │ ├── SDL_x11opengles.c │ │ │ │ ├── SDL_x11opengles.h │ │ │ │ ├── SDL_x11shape.c │ │ │ │ ├── SDL_x11shape.h │ │ │ │ ├── SDL_x11sym.h │ │ │ │ ├── SDL_x11touch.c │ │ │ │ ├── SDL_x11touch.h │ │ │ │ ├── SDL_x11video.c │ │ │ │ ├── SDL_x11video.h │ │ │ │ ├── SDL_x11vulkan.c │ │ │ │ ├── SDL_x11vulkan.h │ │ │ │ ├── SDL_x11window.c │ │ │ │ ├── SDL_x11window.h │ │ │ │ ├── SDL_x11xinput2.c │ │ │ │ ├── SDL_x11xinput2.h │ │ │ │ ├── edid-parse.c │ │ │ │ ├── edid.h │ │ │ │ ├── imKStoUCS.c │ │ │ │ └── imKStoUCS.h │ │ │ │ └── yuv2rgb │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── yuv_rgb.c │ │ │ │ ├── yuv_rgb.h │ │ │ │ ├── yuv_rgb_sse_func.h │ │ │ │ └── yuv_rgb_std_func.h │ │ ├── web.mak │ │ └── windows.mak │ │ ├── ios │ │ ├── Info.plist │ │ ├── icon_assets.json │ │ └── launch.storyboard │ │ ├── linux │ │ ├── incbin.py │ │ ├── include │ │ │ ├── SDL.h │ │ │ └── SDL_config.h │ │ ├── old_Makefile │ │ ├── platform_files.cpp │ │ ├── platform_images.cpp │ │ └── platform_language.cpp │ │ ├── macos │ │ ├── Info.plist │ │ ├── platform_files.mm │ │ └── window.mm │ │ ├── shared │ │ ├── actions.cpp │ │ ├── actions.h │ │ ├── apple │ │ │ ├── platform_images.mm │ │ │ └── platform_language.mm │ │ ├── circuit_breaker.cpp │ │ ├── clipboard.cpp │ │ ├── clipboard_helper.cpp │ │ ├── clipboard_helper.h │ │ ├── clipboard_helper_sdl.cpp │ │ ├── collect_registers.cpp │ │ ├── collect_registers_x86_64.s │ │ ├── compilation_flags.cpp │ │ ├── console.cpp │ │ ├── crc32.cpp │ │ ├── device_name.cpp │ │ ├── display.cpp │ │ ├── display.h │ │ ├── dummy │ │ │ ├── haptics_enabled.cpp │ │ │ ├── journal.cpp │ │ │ ├── keyboard_callback.cpp │ │ │ ├── language.cpp │ │ │ ├── read_only_memory.cpp │ │ │ ├── window_callback.cpp │ │ │ └── window_position.cpp │ │ ├── epsilon │ │ │ └── layout.json │ │ ├── events.cpp │ │ ├── events.h │ │ ├── events_platform.cpp │ │ ├── exam_bytes.cpp │ │ ├── framebuffer.cpp │ │ ├── framebuffer.h │ │ ├── haptics.cpp │ │ ├── haptics.h │ │ ├── init.cpp │ │ ├── journal.cpp │ │ ├── journal.h │ │ ├── journal │ │ │ └── queue_journal.h │ │ ├── keyboard.cpp │ │ ├── keyboard.h │ │ ├── layout.h │ │ ├── layout.py │ │ ├── main.cpp │ │ ├── platform.h │ │ ├── platform_files.cpp │ │ ├── random.cpp │ │ ├── random.h │ │ ├── screenshot.cpp │ │ ├── screenshot.h │ │ ├── state_file.cpp │ │ ├── state_file.h │ │ ├── timing.cpp │ │ ├── unix │ │ │ └── platform_files.cpp │ │ ├── usb.cpp │ │ ├── window.cpp │ │ ├── window.h │ │ └── window_position_cached.cpp │ │ ├── web │ │ ├── calculator.js │ │ ├── clipboard_helper.cpp │ │ ├── css_html_layout.py │ │ ├── exports.cpp │ │ ├── exports.h │ │ ├── include │ │ │ ├── SDL.h │ │ │ └── SDL_config.h │ │ ├── inline.py │ │ ├── journal.cpp │ │ ├── keyboard_callback.cpp │ │ ├── preamble_env.js │ │ ├── simulator.css │ │ ├── simulator.html.inc │ │ └── window_callback.cpp │ │ └── windows │ │ ├── platform_files.cpp │ │ ├── platform_images.cpp │ │ ├── platform_language.cpp │ │ ├── resgen.py │ │ └── resources.rc ├── test │ ├── crc32.cpp │ ├── events.cpp │ ├── exam_bytes.cpp │ ├── exam_mode.cpp │ ├── keyboard.cpp │ └── storage.cpp ├── web.mak └── windows.mak ├── kandinsky ├── fonts │ ├── code_points.h │ ├── epsilon │ │ ├── LargeFont.ttf │ │ └── SmallFont.ttf │ ├── font_constants.h │ ├── rasterizer.c │ └── rasterizer.h ├── include │ └── kandinsky │ │ ├── color.h │ │ ├── context.h │ │ ├── coordinate.h │ │ ├── dot.h │ │ ├── font.h │ │ ├── framebuffer.h │ │ ├── glyph.h │ │ ├── grayscale.h │ │ ├── margins.h │ │ ├── measuring_context.h │ │ ├── palette.h │ │ ├── pixel_cache.h │ │ ├── point.h │ │ ├── rect.h │ │ └── size.h ├── module.mak ├── src │ ├── color.cpp │ ├── context_circle.cpp │ ├── context_line.cpp │ ├── context_pixel.cpp │ ├── context_rect.cpp │ ├── context_text.cpp │ ├── font.cpp │ ├── framebuffer.cpp │ ├── line.cpp │ ├── point.cpp │ └── rect.cpp └── test │ ├── color.cpp │ ├── font.cpp │ └── rect.cpp ├── liba ├── Makefile.bridge ├── README.txt ├── include │ ├── alloca.h │ ├── assert.h │ ├── ctype.h │ ├── errno.h │ ├── float.h │ ├── limits.h │ ├── math.h │ ├── private │ │ ├── ieee754.h │ │ ├── macros.h │ │ └── memconfig.h │ ├── setjmp.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── strings.h │ ├── sys │ │ ├── cdefs.h │ │ └── types.h │ └── unistd.h ├── module.mak ├── src │ ├── abs.c │ ├── aeabi-rt │ │ ├── README.txt │ │ ├── atexit.c │ │ ├── llsl.c │ │ ├── llsr.c │ │ ├── memclr.c │ │ └── memcpy.c │ ├── armv6m │ │ ├── longjmp.s │ │ └── setjmp.s │ ├── armv7m │ │ ├── longjmp.s │ │ └── setjmp.s │ ├── bridge │ │ ├── alloca.h │ │ ├── bridge.c │ │ └── string.h │ ├── bzero.c │ ├── calloc.c │ ├── ctype.c │ ├── errno.c │ ├── external │ │ ├── .clang-format │ │ ├── README.txt │ │ ├── openbsd │ │ │ ├── b_exp__D.c │ │ │ ├── b_log__D.c │ │ │ ├── b_tgamma.c │ │ │ ├── e_acos.c │ │ │ ├── e_acosf.c │ │ │ ├── e_acosh.c │ │ │ ├── e_acoshf.c │ │ │ ├── e_asin.c │ │ │ ├── e_asinf.c │ │ │ ├── e_atan2.c │ │ │ ├── e_atan2f.c │ │ │ ├── e_atanh.c │ │ │ ├── e_atanhf.c │ │ │ ├── e_cosh.c │ │ │ ├── e_coshf.c │ │ │ ├── e_exp.c │ │ │ ├── e_expf.c │ │ │ ├── e_fmod.c │ │ │ ├── e_fmodf.c │ │ │ ├── e_hypot.c │ │ │ ├── e_hypotf.c │ │ │ ├── e_lgamma_r.c │ │ │ ├── e_lgammaf_r.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_log10f.c │ │ │ ├── e_log2.c │ │ │ ├── e_logf.c │ │ │ ├── e_pow.c │ │ │ ├── e_powf.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_rem_pio2f.c │ │ │ ├── e_scalb.c │ │ │ ├── e_sinh.c │ │ │ ├── e_sinhf.c │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── include │ │ │ │ └── math.h │ │ │ ├── k_cos.c │ │ │ ├── k_cosf.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_rem_pio2f.c │ │ │ ├── k_sin.c │ │ │ ├── k_sinf.c │ │ │ ├── k_tan.c │ │ │ ├── k_tanf.c │ │ │ ├── math_private.h │ │ │ ├── s_asinh.c │ │ │ ├── s_asinhf.c │ │ │ ├── s_atan.c │ │ │ ├── s_atanf.c │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf.c │ │ │ ├── s_copysign.c │ │ │ ├── s_copysignf.c │ │ │ ├── s_cos.c │ │ │ ├── s_cosf.c │ │ │ ├── s_erf.c │ │ │ ├── s_erff.c │ │ │ ├── s_expm1.c │ │ │ ├── s_expm1f.c │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.c │ │ │ ├── s_floor.c │ │ │ ├── s_floorf.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmaxf.c │ │ │ ├── s_frexp.c │ │ │ ├── s_frexpf.c │ │ │ ├── s_log1p.c │ │ │ ├── s_log1pf.c │ │ │ ├── s_logb.c │ │ │ ├── s_logbf.c │ │ │ ├── s_modf.c │ │ │ ├── s_modff.c │ │ │ ├── s_nextafter.c │ │ │ ├── s_nextafterf.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_roundf.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_scalbnf.c │ │ │ ├── s_signgam.c │ │ │ ├── s_sin.c │ │ │ ├── s_sinf.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanf.c │ │ │ ├── s_tanh.c │ │ │ ├── s_tanhf.c │ │ │ ├── s_trunc.c │ │ │ ├── s_truncf.c │ │ │ ├── w_lgamma.c │ │ │ └── w_lgammaf.c │ │ └── sqlite │ │ │ ├── mem5.c │ │ │ └── sqliteInt.h │ ├── fpclassify.c │ ├── fpclassifyf.c │ ├── ieee754.c │ ├── malloc.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memmove.c │ ├── memset.c │ ├── nearbyint.c │ ├── nearbyintf.c │ ├── strchr.c │ ├── strcmp.c │ ├── strlcat.c │ ├── strlcpy.c │ └── strlen.c └── test │ ├── aeabi.c │ ├── double.c │ ├── float.c │ ├── helpers.h │ ├── ieee754.c │ ├── limits.c │ ├── long.c │ ├── math.c │ ├── setjmp.c │ ├── stddef.c │ ├── stdint.c │ └── strlcpy.c ├── libaxx ├── README.txt ├── include │ ├── _pair │ ├── algorithm │ ├── array │ ├── bit │ ├── cmath │ ├── complex │ ├── complex.h │ ├── external │ │ ├── .clang-format │ │ └── libcxx │ │ │ ├── complex │ │ │ ├── complex.cpp │ │ │ ├── complex.h │ │ │ └── include │ │ │ ├── __config │ │ │ ├── cmath │ │ │ └── type_traits │ ├── initializer_list │ ├── iostream │ ├── new │ ├── ostream │ ├── span │ ├── type_traits │ └── utility ├── module.mak └── src │ ├── cxxabi │ ├── atexit.cpp │ └── pure_virtual.cpp │ └── new.cpp ├── omg ├── include │ └── omg │ │ ├── always_false.h │ │ ├── arithmetic.h │ │ ├── array.h │ │ ├── bit_helper.h │ │ ├── code_guard.h │ │ ├── code_point.h │ │ ├── concept.h │ │ ├── deconstifier.h │ │ ├── directions.h │ │ ├── enums.h │ │ ├── float.h │ │ ├── global_box.h │ │ ├── ieee754.h │ │ ├── list.h │ │ ├── memory.h │ │ ├── numeric_comparison.h │ │ ├── print.h │ │ ├── ring_buffer.h │ │ ├── round.h │ │ ├── signaling_nan.h │ │ ├── stack.h │ │ ├── string.h │ │ ├── troolean.h │ │ ├── unaligned.h │ │ ├── unicode_helper.h │ │ ├── unreachable.h │ │ ├── utf8_decoder.h │ │ └── utf8_helper.h ├── module.mak ├── src │ ├── arithmetic.cpp │ ├── code_point.cpp │ ├── directions.cpp │ ├── external │ │ ├── .clang-format │ │ └── lz4 │ │ │ ├── lz4.c │ │ │ ├── lz4.h │ │ │ ├── lz4hc.c │ │ │ └── lz4hc.h │ ├── float.cpp │ ├── list.cpp │ ├── memory.cpp │ ├── memory_decompress.cpp │ ├── print.cpp │ ├── unicode_helper.cpp │ ├── utf8_decoder.cpp │ └── utf8_helper.cpp └── test │ ├── arithmetic.cpp │ ├── bit_helper.cpp │ ├── memory.cpp │ ├── print.cpp │ ├── ring_buffer.cpp │ ├── signaling_nan.cpp │ ├── utf8_decoder.cpp │ └── utf8_helper.cpp ├── package.json ├── poincare ├── README.md ├── cli │ ├── Makefile │ ├── README.md │ ├── bisect.sh │ ├── commands.cpp │ ├── commands.h │ ├── history_context.h │ ├── main.cpp │ └── timing.cpp ├── config.epsilon.h ├── doc │ ├── approximation.md │ ├── external.md │ ├── layout.md │ ├── simplification.md │ ├── style_guide.md │ └── tree.md ├── include │ └── poincare │ │ ├── additional_results_helper.h │ │ ├── cas.h │ │ ├── circuit_breaker_checkpoint.h │ │ ├── code_points.h │ │ ├── comparison_operator.h │ │ ├── context.h │ │ ├── context_with_parent.h │ │ ├── coordinate_2D.h │ │ ├── empty_context.h │ │ ├── exam_mode.h │ │ ├── exception_checkpoint.h │ │ ├── expression.h │ │ ├── expression_or_float.h │ │ ├── float_list.h │ │ ├── function_properties │ │ ├── conic.h │ │ ├── function_type.h │ │ └── integral.h │ │ ├── helpers │ │ ├── expression_equal_sign.h │ │ ├── layout.h │ │ ├── scatter_plot_iterable.h │ │ ├── sequence.h │ │ ├── store.h │ │ ├── symbol.h │ │ └── trigonometry.h │ │ ├── init.h │ │ ├── k_layout.h │ │ ├── k_tree.h │ │ ├── layout.h │ │ ├── layout_cursor.h │ │ ├── layout_style.h │ │ ├── point_or_scalar.h │ │ ├── pool.h │ │ ├── pool_checkpoint.h │ │ ├── pool_handle.h │ │ ├── pool_object.h │ │ ├── pool_variable_context.h │ │ ├── preferences.h │ │ ├── print.h │ │ ├── print_float.h │ │ ├── random.h │ │ ├── range.h │ │ ├── sign.h │ │ ├── solver │ │ ├── point_of_interest.h │ │ ├── point_of_interest_list.h │ │ ├── roots.h │ │ ├── solver.h │ │ └── zoom.h │ │ ├── statistics │ │ ├── distribution.h │ │ ├── inference.h │ │ ├── regression.h │ │ └── statistics.h │ │ ├── tree_variable_context.h │ │ ├── trigonometry.h │ │ └── xnt.h ├── module.mak ├── src │ ├── additional_results_helper.cpp │ ├── circuit_breaker_checkpoint.cpp │ ├── comparison_operator.cpp │ ├── context.cpp │ ├── empty_context.cpp │ ├── exception_checkpoint.cpp │ ├── expression │ │ ├── advanced_operation.cpp │ │ ├── advanced_operation.h │ │ ├── advanced_reduction.cpp │ │ ├── advanced_reduction.h │ │ ├── algebraic.cpp │ │ ├── algebraic.h │ │ ├── aliases.cpp │ │ ├── aliases.h │ │ ├── angle.h │ │ ├── approximation.cpp │ │ ├── approximation.h │ │ ├── approximation_derivative.cpp │ │ ├── approximation_helpers.cpp │ │ ├── approximation_integral.cpp │ │ ├── approximation_logarithm.cpp │ │ ├── approximation_matrix.cpp │ │ ├── approximation_power.cpp │ │ ├── approximation_prepare.cpp │ │ ├── approximation_trigonometry.cpp │ │ ├── arithmetic.cpp │ │ ├── arithmetic.h │ │ ├── beautification.cpp │ │ ├── beautification.h │ │ ├── binary.cpp │ │ ├── binary.h │ │ ├── bounds.cpp │ │ ├── bounds.h │ │ ├── builtin.cpp │ │ ├── builtin.h │ │ ├── cas.h │ │ ├── cas_disabled.cpp │ │ ├── cas_enabled.cpp │ │ ├── context.h │ │ ├── continuity.cpp │ │ ├── continuity.h │ │ ├── decimal.cpp │ │ ├── decimal.h │ │ ├── degree.cpp │ │ ├── degree.h │ │ ├── dependency.cpp │ │ ├── dependency.h │ │ ├── derivation.cpp │ │ ├── derivation.h │ │ ├── dimension.cpp │ │ ├── dimension.h │ │ ├── dimension_type.h │ │ ├── dimension_vector.h │ │ ├── division.cpp │ │ ├── division.h │ │ ├── equal_sign.cpp │ │ ├── equal_sign.h │ │ ├── equation_solver.cpp │ │ ├── equation_solver.h │ │ ├── expression_or_float.cpp │ │ ├── float_helper.cpp │ │ ├── float_helper.h │ │ ├── infinity.cpp │ │ ├── infinity.h │ │ ├── integer.cpp │ │ ├── integer.h │ │ ├── integer_serialization.cpp │ │ ├── integration.cpp │ │ ├── integration.h │ │ ├── k_tree.h │ │ ├── list.cpp │ │ ├── list.h │ │ ├── logarithm.cpp │ │ ├── logarithm.h │ │ ├── matrix.cpp │ │ ├── matrix.h │ │ ├── metric.cpp │ │ ├── metric.h │ │ ├── number.cpp │ │ ├── number.h │ │ ├── order.cpp │ │ ├── order.h │ │ ├── parametric.cpp │ │ ├── parametric.h │ │ ├── physical_constant.cpp │ │ ├── physical_constant.h │ │ ├── point_of_interest.h │ │ ├── polynomial.cpp │ │ ├── polynomial.h │ │ ├── power_like.cpp │ │ ├── power_like.h │ │ ├── projection.cpp │ │ ├── projection.h │ │ ├── random.cpp │ │ ├── random.h │ │ ├── rational.cpp │ │ ├── rational.h │ │ ├── sequence.cpp │ │ ├── sequence.h │ │ ├── set.cpp │ │ ├── set.h │ │ ├── sign.h │ │ ├── simplification.cpp │ │ ├── simplification.h │ │ ├── symbol.cpp │ │ ├── symbol.h │ │ ├── systematic_addition.cpp │ │ ├── systematic_multiplication.cpp │ │ ├── systematic_operation.cpp │ │ ├── systematic_operation.h │ │ ├── systematic_reduction.cpp │ │ ├── systematic_reduction.h │ │ ├── trigonometry.cpp │ │ ├── trigonometry.h │ │ ├── trigonometry_exact_formulas.cpp │ │ ├── trigonometry_exact_formulas.h │ │ ├── types.inc │ │ ├── undefined.cpp │ │ ├── undefined.h │ │ ├── units │ │ │ ├── k_units.h │ │ │ ├── representatives.cpp │ │ │ ├── representatives.h │ │ │ ├── si_constants.h │ │ │ ├── unit.cpp │ │ │ └── unit.h │ │ ├── variables.cpp │ │ ├── variables.h │ │ ├── vector.cpp │ │ └── vector.h │ ├── float_list.cpp │ ├── function_properties │ │ ├── conic.cpp │ │ ├── function_type.cpp │ │ ├── helper.cpp │ │ ├── helper.h │ │ └── integral.cpp │ ├── helpers │ │ ├── cas.cpp │ │ ├── expression_equal_sign.cpp │ │ ├── layout.cpp │ │ ├── scatter_plot_iterable.cpp │ │ ├── sequence.cpp │ │ ├── store.cpp │ │ ├── symbol.cpp │ │ └── trigonometry.cpp │ ├── init.cpp │ ├── init_no_pool.cpp │ ├── layout │ │ ├── autocompleted_pair.cpp │ │ ├── autocompleted_pair.h │ │ ├── code_point_layout.cpp │ │ ├── code_point_layout.h │ │ ├── cursor_motion.cpp │ │ ├── cursor_motion.h │ │ ├── empty_rectangle.cpp │ │ ├── empty_rectangle.h │ │ ├── grid.cpp │ │ ├── grid.h │ │ ├── indices.h │ │ ├── input_beautification.cpp │ │ ├── input_beautification.h │ │ ├── k_tree.h │ │ ├── layout_cursor.cpp │ │ ├── layout_cursor.h │ │ ├── layout_memoization.cpp │ │ ├── layout_memoization.h │ │ ├── layout_selection.cpp │ │ ├── layout_selection.h │ │ ├── layout_serializer.cpp │ │ ├── layout_serializer.h │ │ ├── layout_span.cpp │ │ ├── layout_span.h │ │ ├── layout_span_decoder.cpp │ │ ├── layout_span_decoder.h │ │ ├── layouter.cpp │ │ ├── layouter.h │ │ ├── multiplication_symbol.cpp │ │ ├── multiplication_symbol.h │ │ ├── parser.cpp │ │ ├── parser.h │ │ ├── parsing │ │ │ ├── helper.cpp │ │ │ ├── helper.h │ │ │ ├── latex_parser.cpp │ │ │ ├── latex_parser.h │ │ │ ├── parsing_context.h │ │ │ ├── rack_parser.cpp │ │ │ ├── rack_parser.h │ │ │ ├── token.h │ │ │ ├── tokenizer.cpp │ │ │ └── tokenizer.h │ │ ├── rack.h │ │ ├── rack_from_text.cpp │ │ ├── rack_from_text.h │ │ ├── rack_layout.cpp │ │ ├── rack_layout.h │ │ ├── rack_layout_decoder.cpp │ │ ├── rack_layout_decoder.h │ │ ├── render.cpp │ │ ├── render.h │ │ ├── render_masks.h │ │ ├── render_metrics.h │ │ ├── sequence.h │ │ ├── types.inc │ │ ├── vertical_offset.h │ │ └── xnt.cpp │ ├── memory │ │ ├── arbitrary_data.h │ │ ├── block.h │ │ ├── block_stack.cpp │ │ ├── block_stack.h │ │ ├── indexed_child.h │ │ ├── k_tree.h │ │ ├── k_tree_concept.h │ │ ├── multiple_nodes_iterator.h │ │ ├── n_ary.cpp │ │ ├── n_ary.h │ │ ├── pattern_matching.cpp │ │ ├── pattern_matching.h │ │ ├── placeholder.h │ │ ├── tree.cpp │ │ ├── tree.h │ │ ├── tree_helpers.h │ │ ├── tree_ref.cpp │ │ ├── tree_ref.h │ │ ├── tree_stack.cpp │ │ ├── tree_stack.h │ │ ├── tree_stack_checkpoint.cpp │ │ ├── tree_stack_checkpoint.h │ │ ├── tree_sub_class.h │ │ ├── type_block.h │ │ ├── type_enum.h │ │ ├── types.inc │ │ ├── value_block.cpp │ │ ├── value_block.h │ │ ├── visualization.cpp │ │ └── visualization.h │ ├── pool.cpp │ ├── pool │ │ ├── expression.cpp │ │ ├── layout.cpp │ │ ├── pool_layout_cursor.cpp │ │ └── pool_layout_cursor.h │ ├── pool_checkpoint.cpp │ ├── pool_checkpoint_dummy.cpp │ ├── pool_handle.cpp │ ├── pool_object.cpp │ ├── pool_variable_context.cpp │ ├── preferences.cpp │ ├── preferences_in_storage.cpp │ ├── preferences_no_storage.cpp │ ├── print.cpp │ ├── print_float.cpp │ ├── random.cpp │ ├── range.cpp │ ├── sign.cpp │ ├── solver │ │ ├── beta_function.cpp │ │ ├── beta_function.h │ │ ├── erf_inv.cpp │ │ ├── erf_inv.h │ │ ├── matrix_array.cpp │ │ ├── matrix_array.h │ │ ├── point_of_interest_list.cpp │ │ ├── regularized_gamma_function.cpp │ │ ├── regularized_gamma_function.h │ │ ├── regularized_incomplete_beta_function.cpp │ │ ├── regularized_incomplete_beta_function.h │ │ ├── roots.cpp │ │ ├── solver.cpp │ │ ├── solver_algorithms.cpp │ │ ├── solver_algorithms.h │ │ ├── zoom.cpp │ │ └── zoom.h │ ├── statistics │ │ ├── data_table.cpp │ │ ├── data_table.h │ │ ├── dataset_adapter.h │ │ ├── distributions │ │ │ ├── distribution.cpp │ │ │ ├── distribution.h │ │ │ ├── distribution_cumulative_function.cpp │ │ │ ├── distribution_cumulative_inverse.cpp │ │ │ ├── distribution_evaluate.cpp │ │ │ ├── distribution_method.cpp │ │ │ ├── distribution_method.h │ │ │ └── distribution_parameters.cpp │ │ ├── domain.cpp │ │ ├── domain.h │ │ ├── inference │ │ │ ├── chi2_test.cpp │ │ │ ├── chi2_test.h │ │ │ ├── confidence_interval.cpp │ │ │ ├── confidence_interval.h │ │ │ ├── inference.cpp │ │ │ ├── inference.h │ │ │ ├── significance_test.cpp │ │ │ └── significance_test.h │ │ ├── regression │ │ │ ├── affine_regression.cpp │ │ │ ├── affine_regression.h │ │ │ ├── cubic_regression.cpp │ │ │ ├── cubic_regression.h │ │ │ ├── exponential_regression.cpp │ │ │ ├── exponential_regression.h │ │ │ ├── linear_regression.cpp │ │ │ ├── linear_regression.h │ │ │ ├── logarithmic_regression.cpp │ │ │ ├── logarithmic_regression.h │ │ │ ├── logistic_regression.cpp │ │ │ ├── logistic_regression.h │ │ │ ├── median_regression.cpp │ │ │ ├── median_regression.h │ │ │ ├── none_regression.h │ │ │ ├── power_regression.cpp │ │ │ ├── power_regression.h │ │ │ ├── proportional_regression.cpp │ │ │ ├── proportional_regression.h │ │ │ ├── quadratic_regression.cpp │ │ │ ├── quadratic_regression.h │ │ │ ├── quartic_regression.cpp │ │ │ ├── quartic_regression.h │ │ │ ├── regression.cpp │ │ │ ├── regression.h │ │ │ ├── regression_switch.cpp │ │ │ ├── transformed_regression.cpp │ │ │ ├── transformed_regression.h │ │ │ ├── trigonometric_regression.cpp │ │ │ └── trigonometric_regression.h │ │ ├── statistics_dataset.cpp │ │ ├── statistics_dataset.h │ │ ├── statistics_dataset_column.cpp │ │ └── statistics_dataset_column.h │ ├── tree_variable_context.cpp │ └── trigonometry.cpp └── test │ ├── approximation.cpp │ ├── beautification.cpp │ ├── bounds.cpp │ ├── compare.py │ ├── dimension.cpp │ ├── equation_solver.cpp │ ├── float_helper.cpp │ ├── float_helper.h │ ├── helper.cpp │ ├── helper.h │ ├── helpers │ └── expression_equal_sign.cpp │ ├── integer.cpp │ ├── k_tree.cpp │ ├── latex_parser.cpp │ ├── layout.cpp │ ├── main.cpp │ ├── match.cpp │ ├── matrix.cpp │ ├── memory_elements.cpp │ ├── n_ary.cpp │ ├── old │ ├── additional_results_helper.cpp │ ├── approximation.cpp │ ├── arithmetic.cpp │ ├── conics.cpp │ ├── dependency.cpp │ ├── derivative.cpp │ ├── distribution.cpp │ ├── erf_inv.cpp │ ├── exam_mode.cpp │ ├── expression_order.cpp │ ├── expression_properties.cpp │ ├── expression_serialization.cpp │ ├── expression_to_layout.cpp │ ├── helper.cpp │ ├── helper.h │ ├── layout.cpp │ ├── layout_serialization.cpp │ ├── layout_to_expression.cpp │ ├── matrix.cpp │ ├── numeric_solver.cpp │ ├── parsing.cpp │ ├── print.cpp │ ├── print_float.cpp │ ├── range.cpp │ ├── rational.cpp │ ├── regularized_function.cpp │ ├── simplification.cpp │ ├── tree │ │ ├── blob_object.h │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── pair_object.h │ │ └── tree_handle.cpp │ └── zoom.cpp │ ├── order.cpp │ ├── parse.cpp │ ├── polynomial.cpp │ ├── projection.cpp │ ├── random.cpp │ ├── rational.cpp │ ├── roots.cpp │ ├── serialization.cpp │ ├── set.cpp │ ├── sign.cpp │ ├── simplification.cpp │ ├── tree_stack.cpp │ └── trigonometry_exact_formulas.cpp ├── python ├── module.mak ├── port │ ├── builtins.c │ ├── genhdr │ │ ├── .clang-format │ │ ├── moduledefs.h │ │ └── qstrdefs.in.h │ ├── helpers.cpp │ ├── helpers.h │ ├── mod │ │ ├── .clang-format │ │ ├── include │ │ │ ├── fft │ │ │ │ └── fft.h │ │ │ ├── io │ │ │ │ └── io.h │ │ │ ├── linalg │ │ │ │ └── linalg.h │ │ │ ├── numpy │ │ │ │ └── carray │ │ │ │ │ └── carray.h │ │ │ ├── scipy │ │ │ │ ├── scipy.h │ │ │ │ └── signal │ │ │ │ │ └── signal.h │ │ │ ├── user │ │ │ │ └── user.h │ │ │ └── utils │ │ │ │ └── utils.h │ │ ├── ion │ │ │ ├── modion.cpp │ │ │ ├── modion.h │ │ │ └── modion_table.cpp │ │ ├── kandinsky │ │ │ ├── modkandinsky.cpp │ │ │ ├── modkandinsky.h │ │ │ └── modkandinsky_table.c │ │ ├── matplotlib │ │ │ ├── modmatplotlib.cpp │ │ │ ├── modmatplotlib.h │ │ │ ├── modmatplotlib_table.c │ │ │ └── pyplot │ │ │ │ ├── modpyplot.cpp │ │ │ │ ├── modpyplot.h │ │ │ │ ├── modpyplot_table.c │ │ │ │ ├── plot_controller.cpp │ │ │ │ ├── plot_controller.h │ │ │ │ ├── plot_store.cpp │ │ │ │ ├── plot_store.h │ │ │ │ ├── pyplot_view.cpp │ │ │ │ └── pyplot_view.h │ │ ├── ndarray.c │ │ ├── ndarray.h │ │ ├── ndarray_operators.c │ │ ├── ndarray_operators.h │ │ ├── ndarray_properties.c │ │ ├── ndarray_properties.h │ │ ├── numpy │ │ │ ├── approx.c │ │ │ ├── approx.h │ │ │ ├── carray │ │ │ │ ├── carray_tools.c │ │ │ │ └── carray_tools.h │ │ │ ├── compare.c │ │ │ ├── compare.h │ │ │ ├── create.c │ │ │ ├── create.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── linalg │ │ │ │ ├── linalg_tools.c │ │ │ │ └── linalg_tools.h │ │ │ ├── ndarray │ │ │ │ ├── ndarray_iter.c │ │ │ │ └── ndarray_iter.h │ │ │ ├── numerical.c │ │ │ ├── numerical.h │ │ │ ├── numpy.c │ │ │ ├── numpy.h │ │ │ ├── poly.c │ │ │ ├── poly.h │ │ │ ├── stats.c │ │ │ ├── stats.h │ │ │ ├── transform.c │ │ │ ├── transform.h │ │ │ ├── vector.c │ │ │ └── vector.h │ │ ├── numworks_ulab_config.h │ │ ├── time │ │ │ ├── modtime.cpp │ │ │ ├── modtime.h │ │ │ └── modtime_table.c │ │ ├── turtle │ │ │ ├── modturtle.cpp │ │ │ ├── modturtle.h │ │ │ ├── modturtle_table.c │ │ │ ├── turtle.cpp │ │ │ └── turtle.h │ │ ├── ulab.c │ │ ├── ulab.h │ │ ├── ulab_tools.c │ │ └── ulab_tools.h │ ├── mpconfigport.h │ ├── mphalport.c │ ├── mphalport.h │ ├── port.cpp │ ├── port.h │ └── stackctrl.c ├── src │ ├── .clang-format │ ├── extmod │ │ ├── modurandom.c │ │ └── virtpin.h │ └── py │ │ ├── argcheck.c │ │ ├── asmarm.c │ │ ├── asmarm.h │ │ ├── asmbase.c │ │ ├── asmbase.h │ │ ├── asmthumb.c │ │ ├── asmthumb.h │ │ ├── asmx64.c │ │ ├── asmx64.h │ │ ├── asmx86.c │ │ ├── asmx86.h │ │ ├── asmxtensa.c │ │ ├── asmxtensa.h │ │ ├── bc.c │ │ ├── bc.h │ │ ├── bc0.h │ │ ├── binary.c │ │ ├── binary.h │ │ ├── builtin.h │ │ ├── builtinevex.c │ │ ├── builtinhelp.c │ │ ├── builtinimport.c │ │ ├── compile.c │ │ ├── compile.h │ │ ├── emit.h │ │ ├── emitbc.c │ │ ├── emitcommon.c │ │ ├── emitglue.c │ │ ├── emitglue.h │ │ ├── emitinlinethumb.c │ │ ├── emitinlinextensa.c │ │ ├── emitnarm.c │ │ ├── emitnative.c │ │ ├── emitnthumb.c │ │ ├── emitnx64.c │ │ ├── emitnx86.c │ │ ├── emitnxtensa.c │ │ ├── emitnxtensawin.c │ │ ├── formatfloat.c │ │ ├── formatfloat.h │ │ ├── frozenmod.c │ │ ├── frozenmod.h │ │ ├── gc.c │ │ ├── gc.h │ │ ├── grammar.h │ │ ├── lexer.c │ │ ├── lexer.h │ │ ├── makeqstrdata.py │ │ ├── malloc.c │ │ ├── map.c │ │ ├── misc.h │ │ ├── modarray.c │ │ ├── modbuiltins.c │ │ ├── modcmath.c │ │ ├── modcollections.c │ │ ├── modgc.c │ │ ├── modio.c │ │ ├── modmath.c │ │ ├── modmicropython.c │ │ ├── modstruct.c │ │ ├── modsys.c │ │ ├── modthread.c │ │ ├── moduerrno.c │ │ ├── mpconfig.h │ │ ├── mperrno.h │ │ ├── mphal.h │ │ ├── mpprint.c │ │ ├── mpprint.h │ │ ├── mpstate.c │ │ ├── mpstate.h │ │ ├── mpthread.h │ │ ├── mpz.c │ │ ├── mpz.h │ │ ├── nativeglue.c │ │ ├── nativeglue.h │ │ ├── nlr.c │ │ ├── nlr.h │ │ ├── nlraarch64.c │ │ ├── nlrpowerpc.c │ │ ├── nlrsetjmp.c │ │ ├── nlrthumb.c │ │ ├── nlrx64.c │ │ ├── nlrx86.c │ │ ├── nlrxtensa.c │ │ ├── obj.c │ │ ├── obj.h │ │ ├── objarray.c │ │ ├── objarray.h │ │ ├── objattrtuple.c │ │ ├── objbool.c │ │ ├── objboundmeth.c │ │ ├── objcell.c │ │ ├── objclosure.c │ │ ├── objcomplex.c │ │ ├── objdeque.c │ │ ├── objdict.c │ │ ├── objenumerate.c │ │ ├── objexcept.c │ │ ├── objexcept.h │ │ ├── objfilter.c │ │ ├── objfloat.c │ │ ├── objfun.c │ │ ├── objfun.h │ │ ├── objgenerator.c │ │ ├── objgenerator.h │ │ ├── objgetitemiter.c │ │ ├── objint.c │ │ ├── objint.h │ │ ├── objint_longlong.c │ │ ├── objint_mpz.c │ │ ├── objlist.c │ │ ├── objlist.h │ │ ├── objmap.c │ │ ├── objmodule.c │ │ ├── objmodule.h │ │ ├── objnamedtuple.c │ │ ├── objnamedtuple.h │ │ ├── objnone.c │ │ ├── objobject.c │ │ ├── objpolyiter.c │ │ ├── objproperty.c │ │ ├── objrange.c │ │ ├── objreversed.c │ │ ├── objset.c │ │ ├── objsingleton.c │ │ ├── objslice.c │ │ ├── objstr.c │ │ ├── objstr.h │ │ ├── objstringio.c │ │ ├── objstringio.h │ │ ├── objstrunicode.c │ │ ├── objtuple.c │ │ ├── objtuple.h │ │ ├── objtype.c │ │ ├── objtype.h │ │ ├── objzip.c │ │ ├── opmethods.c │ │ ├── pairheap.c │ │ ├── pairheap.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── parsenum.c │ │ ├── parsenum.h │ │ ├── parsenumbase.c │ │ ├── parsenumbase.h │ │ ├── persistentcode.c │ │ ├── persistentcode.h │ │ ├── profile.c │ │ ├── profile.h │ │ ├── pystack.c │ │ ├── pystack.h │ │ ├── qstr.c │ │ ├── qstr.h │ │ ├── qstrdefs.h │ │ ├── reader.c │ │ ├── reader.h │ │ ├── repl.c │ │ ├── repl.h │ │ ├── ringbuf.c │ │ ├── ringbuf.h │ │ ├── runtime.c │ │ ├── runtime.h │ │ ├── runtime0.h │ │ ├── runtime_utils.c │ │ ├── scheduler.c │ │ ├── scope.c │ │ ├── scope.h │ │ ├── sequence.c │ │ ├── showbc.c │ │ ├── smallint.c │ │ ├── smallint.h │ │ ├── stackctrl.c │ │ ├── stackctrl.h │ │ ├── stream.c │ │ ├── stream.h │ │ ├── unicode.c │ │ ├── unicode.h │ │ ├── vm.c │ │ ├── vmentrytable.h │ │ ├── vstr.c │ │ └── warning.c ├── test │ ├── basics.cpp │ ├── execution_environment.cpp │ ├── execution_environment.h │ ├── ion.cpp │ ├── kandinsky.cpp │ ├── math.cpp │ ├── matplotlib.cpp │ ├── numpy.cpp │ ├── random.cpp │ ├── time.cpp │ └── turtle.cpp └── upgrade.md ├── quiz ├── README.md ├── gdb_script.gdb ├── include │ ├── quiz.h │ └── quiz │ │ └── stopwatch.h ├── module.mak └── src │ ├── assertions.cpp │ ├── i18n.cpp │ ├── runner.cpp │ ├── runner_helpers.cpp │ ├── runner_helpers.h │ ├── runner_helpers_epsilon.cpp │ ├── stopwatch.cpp │ ├── symbols.awk │ └── symbols.h └── tests ├── dfu_test.py ├── fuzzer_seeds ├── calculation_additional_results_function_integer.nws ├── calculation_empty_collapse.nws ├── distributions_chi-square.nws ├── elements_pt_exam_mode.nws ├── finance_compound_interest.nws ├── grapher_autozoom_1.nws ├── grapher_set_domain.nws ├── grapher_values_abscissa_column_options.nws ├── inference_confidence_interval.nws ├── input_beautification4.nws ├── python_button_shell.nws ├── regression_logistic.nws ├── sequence_definition.nws ├── solver_interval.nws ├── statistics_cumulated_freq.nws ├── store_menu.nws ├── store_menu_linear_edition.nws └── toolbox.nws ├── screenshots_dataset ├── alternate_empty_union_tabs │ ├── crc32.txt │ └── scenario.nws ├── beautification_double_quotes │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_complex │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_complex_no_illustration │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_complex_trigo │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_direct_trigo │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_direct_trigo_change_angle_unit │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_direct_trigo_degree │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_direct_trigo_different_angle_input_and_output │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_direct_trigo_large_angle │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_function │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_function_and_integer │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_function_parametric │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_hidden_exact │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_inverse_trigonometry.nws │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_matrix_1 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_matrix_2 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_matrix_3 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_matrix_4 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_matrix_inf │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_real_polar │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_scientific_and_integer │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_scientific_and_rational │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_scientific_change_settings │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_units │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_units_angle │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_units_order │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_vector_1 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_vector_2 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_vector_3 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_vector_4 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_vector_empty │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_vector_no_illustration_1 │ ├── crc32.txt │ └── scenario.nws ├── calculation_additional_results_vector_no_illustration_2 │ ├── crc32.txt │ └── scenario.nws ├── calculation_ans_crash_7163 │ ├── crc32.txt │ └── scenario.nws ├── calculation_auto_parenthesis_power │ ├── crc32.txt │ └── scenario.nws ├── calculation_brackets_balance_1 │ ├── crc32.txt │ └── scenario.nws ├── calculation_brackets_balance_2 │ ├── crc32.txt │ └── scenario.nws ├── calculation_brackets_balance_3 │ ├── crc32.txt │ └── scenario.nws ├── calculation_context_dependant_parse_failure │ ├── crc32.txt │ └── scenario.nws ├── calculation_cursor_collapse │ ├── crc32.txt │ └── scenario.nws ├── calculation_cursor_insertion_matrix │ ├── crc32.txt │ └── scenario.nws ├── calculation_derivative_layout │ ├── crc32.txt │ └── scenario.nws ├── calculation_derivative_random │ ├── crc32.txt │ └── scenario.nws ├── calculation_display_mode │ ├── crc32.txt │ └── scenario.nws ├── calculation_division_serialisation │ ├── crc32.txt │ └── scenario.nws ├── calculation_dutch_logarithm │ ├── crc32.txt │ └── scenario.nws ├── calculation_empty_collapse │ ├── crc32.txt │ └── scenario.nws ├── calculation_equal_sign │ ├── crc32.txt │ └── scenario.nws ├── calculation_fraction_cursor_insertion_1 │ ├── crc32.txt │ └── scenario.nws ├── calculation_fraction_cursor_insertion_2 │ ├── crc32.txt │ └── scenario.nws ├── calculation_history_cell_max_height │ ├── crc32.txt │ └── scenario.nws ├── calculation_history_cell_size_1 │ ├── crc32.txt │ └── scenario.nws ├── calculation_history_cell_size_2 │ ├── crc32.txt │ └── scenario.nws ├── calculation_identity100 │ ├── crc32.txt │ └── scenario.nws ├── calculation_implicit_angle_conversion │ ├── crc32.txt │ └── scenario.nws ├── calculation_infinity │ ├── crc32.txt │ └── scenario.nws ├── calculation_input_beautification_1 │ ├── crc32.txt │ └── scenario.nws ├── calculation_input_beautification_2 │ ├── crc32.txt │ └── scenario.nws ├── calculation_input_beautification_3 │ ├── crc32.txt │ └── scenario.nws ├── calculation_input_beautification_4 │ ├── crc32.txt │ └── scenario.nws ├── calculation_input_beautification_5 │ ├── crc32.txt │ └── scenario.nws ├── calculation_input_beautification_log │ ├── crc32.txt │ └── scenario.nws ├── calculation_insertion_cursor_after_beautification │ ├── crc32.txt │ └── scenario.nws ├── calculation_large_numbers │ ├── crc32.txt │ └── scenario.nws ├── calculation_layout_cursor_collapse │ ├── crc32.txt │ └── scenario.nws ├── calculation_layout_derivative_in_matrix │ ├── crc32.txt │ └── scenario.nws ├── calculation_layout_nested_integrals │ ├── crc32.txt │ └── scenario.nws ├── calculation_layout_selection │ ├── crc32.txt │ └── scenario.nws ├── calculation_list_element │ ├── crc32.txt │ └── scenario.nws ├── calculation_logical_operators │ ├── crc32.txt │ └── scenario.nws ├── calculation_margins_arrow │ ├── crc32.txt │ └── scenario.nws ├── calculation_matrices │ ├── crc32.txt │ └── scenario.nws ├── calculation_matrix_shrink │ ├── crc32.txt │ └── scenario.nws ├── calculation_mixed_fractions │ ├── crc32.txt │ └── scenario.nws ├── calculation_notequal_sign │ ├── crc32.txt │ └── scenario.nws ├── calculation_nth_derivative │ ├── crc32.txt │ └── scenario.nws ├── calculation_parse_fail │ ├── crc32.txt │ └── scenario.nws ├── calculation_percent │ ├── crc32.txt │ └── scenario.nws ├── calculation_piecewise_operator │ ├── crc32.txt │ └── scenario.nws ├── calculation_polar │ ├── crc32.txt │ └── scenario.nws ├── calculation_pt_combinatorics │ ├── crc32.txt │ └── scenario.nws ├── calculation_simple │ ├── crc32.txt │ └── scenario.nws ├── calculation_store_operation │ ├── crc32.txt │ └── scenario.nws ├── calculation_store_sequence_context │ ├── crc32.txt │ └── scenario.nws ├── calculation_unit_conversion_with_ans │ ├── crc32.txt │ └── scenario.nws ├── calculation_unit_function_assignement │ ├── crc32.txt │ └── scenario.nws ├── calculation_varbox_can_handle_lists │ ├── crc32.txt │ └── scenario.nws ├── calculation_working_buffer │ ├── crc32.txt │ └── scenario.nws ├── calculation_xnt_linear_edition │ ├── crc32.txt │ └── scenario.nws ├── clipboard_calc_distrib │ ├── crc32.txt │ └── scenario.nws ├── crc32.txt ├── degree_mode │ ├── crc32.txt │ └── scenario.nws ├── distributions_binomial │ ├── crc32.txt │ └── scenario.nws ├── distributions_calculation_cells │ ├── crc32.txt │ └── scenario.nws ├── distributions_chi_square │ ├── crc32.txt │ └── scenario.nws ├── distributions_exponential │ ├── crc32.txt │ └── scenario.nws ├── distributions_fisher │ ├── crc32.txt │ └── scenario.nws ├── distributions_geometric │ ├── crc32.txt │ └── scenario.nws ├── distributions_hypergeometric_overflow │ ├── crc32.txt │ └── scenario.nws ├── distributions_max_title_size │ ├── crc32.txt │ └── scenario.nws ├── distributions_normal │ ├── crc32.txt │ └── scenario.nws ├── distributions_normal_reverse │ ├── crc32.txt │ └── scenario.nws ├── distributions_poisson │ ├── crc32.txt │ └── scenario.nws ├── distributions_round_discrete_bounds │ ├── crc32.txt │ └── scenario.nws ├── distributions_student │ ├── crc32.txt │ └── scenario.nws ├── distributions_uniform │ ├── crc32.txt │ └── scenario.nws ├── dropdown_abort │ ├── crc32.txt │ └── scenario.nws ├── dropdown_open │ ├── crc32.txt │ └── scenario.nws ├── elements_details_list_navigation │ ├── crc32.txt │ └── scenario.nws ├── elements_main_view_display_type │ ├── crc32.txt │ └── scenario.nws ├── elements_main_view_navigation │ ├── crc32.txt │ └── scenario.nws ├── elements_main_view_store_and_copy │ ├── crc32.txt │ └── scenario.nws ├── elements_search │ ├── crc32.txt │ └── scenario.nws ├── escher_coordinate_overflow_2 │ ├── crc32.txt │ └── scenario.nws ├── event_external_text │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_exit │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_fr │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_nl │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_pt │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_reactivation │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_sat │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_staar │ ├── crc32.txt │ └── scenario.nws ├── exam_mode_uk │ ├── crc32.txt │ └── scenario.nws ├── finance_compound_interest │ ├── crc32.txt │ └── scenario.nws ├── finance_simple_interest │ ├── crc32.txt │ └── scenario.nws ├── grapher_absolute_value_derivative │ ├── crc32.txt │ └── scenario.nws ├── grapher_absolute_value_interest │ ├── crc32.txt │ └── scenario.nws ├── grapher_absolute_value_interest_complex_mode │ ├── crc32.txt │ └── scenario.nws ├── grapher_absolute_value_nested │ ├── crc32.txt │ └── scenario.nws ├── grapher_area_between_undef │ ├── crc32.txt │ └── scenario.nws ├── grapher_auto_cursor_cartesian │ ├── crc32.txt │ └── scenario.nws ├── grapher_auto_cursor_inverse_function │ ├── crc32.txt │ └── scenario.nws ├── grapher_auto_cursor_parametric │ ├── crc32.txt │ └── scenario.nws ├── grapher_auto_cursor_polar │ ├── crc32.txt │ └── scenario.nws ├── grapher_auto_cursor_when_forcing_x │ ├── crc32.txt │ └── scenario.nws ├── grapher_auto_parameter_grid_unit │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_1 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_10 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_11 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_12 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_13 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_14 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_15 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_16 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_2 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_3 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_4 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_5 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_6 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_7 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_8 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_9 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_forced_x_range │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_large_intersection │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_piecewise_1 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_piecewise_2 │ ├── crc32.txt │ └── scenario.nws ├── grapher_autozoom_trig_intersections │ ├── crc32.txt │ └── scenario.nws ├── grapher_backwards_integral │ ├── crc32.txt │ └── scenario.nws ├── grapher_calculate_menu │ ├── crc32.txt │ └── scenario.nws ├── grapher_change_color │ ├── crc32.txt │ └── scenario.nws ├── grapher_condensed_derivatives │ ├── crc32.txt │ └── scenario.nws ├── grapher_conic_inequality │ ├── crc32.txt │ └── scenario.nws ├── grapher_cursor_banner_overlap │ ├── crc32.txt │ └── scenario.nws ├── grapher_cursor_behind_banner │ ├── crc32.txt │ └── scenario.nws ├── grapher_cursor_memoization │ ├── crc32.txt │ └── scenario.nws ├── grapher_curve_parameters_cartesian │ ├── crc32.txt │ └── scenario.nws ├── grapher_curve_parameters_parametric │ ├── crc32.txt │ └── scenario.nws ├── grapher_curve_parameters_polar │ ├── crc32.txt │ └── scenario.nws ├── grapher_deletion_from_tab_graph │ ├── crc32.txt │ └── scenario.nws ├── grapher_derivative_curve_exit_responder_chain │ ├── crc32.txt │ └── scenario.nws ├── grapher_derivative_curve_goto │ ├── crc32.txt │ └── scenario.nws ├── grapher_derivative_curve_vertical_move │ ├── crc32.txt │ └── scenario.nws ├── grapher_derivatives_color │ ├── crc32.txt │ └── scenario.nws ├── grapher_discontinuity_interest_points_1 │ ├── crc32.txt │ └── scenario.nws ├── grapher_discontinuity_interest_points_2 │ ├── crc32.txt │ └── scenario.nws ├── grapher_discontinuity_interest_points_3 │ ├── crc32.txt │ └── scenario.nws ├── grapher_discontinuity_interest_points_4 │ ├── crc32.txt │ └── scenario.nws ├── grapher_discontinuity_on_root │ ├── crc32.txt │ └── scenario.nws ├── grapher_display_derivative_banner │ ├── crc32.txt │ └── scenario.nws ├── grapher_edition │ ├── crc32.txt │ └── scenario.nws ├── grapher_empty_scatter_plot │ ├── crc32.txt │ └── scenario.nws ├── grapher_exact_expression_trigonometric │ ├── crc32.txt │ └── scenario.nws ├── grapher_exact_label │ ├── crc32.txt │ └── scenario.nws ├── grapher_exact_results_symbolic_undefined │ ├── crc32.txt │ └── scenario.nws ├── grapher_false_complex_function │ ├── crc32.txt │ └── scenario.nws ├── grapher_false_maximum │ ├── crc32.txt │ └── scenario.nws ├── grapher_false_root │ ├── crc32.txt │ └── scenario.nws ├── grapher_find_edge │ ├── crc32.txt │ └── scenario.nws ├── grapher_find_zeroes │ ├── crc32.txt │ └── scenario.nws ├── grapher_find_zeroes_absolute_of_polynom │ ├── crc32.txt │ └── scenario.nws ├── grapher_flat_conics │ ├── crc32.txt │ └── scenario.nws ├── grapher_graph_area_cell │ ├── crc32.txt │ └── scenario.nws ├── grapher_graph_display_mode │ ├── crc32.txt │ └── scenario.nws ├── grapher_graph_variable_box │ ├── crc32.txt │ └── scenario.nws ├── grapher_implicit_reduction_target │ ├── crc32.txt │ └── scenario.nws ├── grapher_input_beautification │ ├── crc32.txt │ └── scenario.nws ├── grapher_integral_between_curves │ ├── crc32.txt │ └── scenario.nws ├── grapher_integral_of_integral │ ├── crc32.txt │ └── scenario.nws ├── grapher_integral_with_derivative │ ├── crc32.txt │ └── scenario.nws ├── grapher_interest_inequation │ ├── crc32.txt │ └── scenario.nws ├── grapher_interest_intersection_with_disabled_function │ ├── crc32.txt │ └── scenario.nws ├── grapher_interest_intersections │ ├── crc32.txt │ └── scenario.nws ├── grapher_interest_intersections_on_discontinuities │ ├── crc32.txt │ └── scenario.nws ├── grapher_inverse_polar │ ├── crc32.txt │ └── scenario.nws ├── grapher_invert_function_interest │ ├── crc32.txt │ └── scenario.nws ├── grapher_invert_function_names │ ├── crc32.txt │ └── scenario.nws ├── grapher_labels_no_overlap │ ├── crc32.txt │ └── scenario.nws ├── grapher_list_invalid_syntax │ ├── crc32.txt │ └── scenario.nws ├── grapher_long_functions_name │ ├── crc32.txt │ └── scenario.nws ├── grapher_max_pan │ ├── crc32.txt │ └── scenario.nws ├── grapher_maximum_with_function_very_flat_close_to_zero │ ├── crc32.txt │ └── scenario.nws ├── grapher_navigate_pan_zoom │ ├── crc32.txt │ └── scenario.nws ├── grapher_no_data │ ├── crc32.txt │ └── scenario.nws ├── grapher_no_fake_interest │ ├── crc32.txt │ └── scenario.nws ├── grapher_normalisation_with_user_grid_unit │ ├── crc32.txt │ └── scenario.nws ├── grapher_open_modal_on_template_button │ ├── crc32.txt │ └── scenario.nws ├── grapher_parametric_components │ ├── crc32.txt │ └── scenario.nws ├── grapher_piecewise_function │ ├── crc32.txt │ └── scenario.nws ├── grapher_piecewise_no_minimum │ ├── crc32.txt │ └── scenario.nws ├── grapher_piecewise_no_root │ ├── crc32.txt │ └── scenario.nws ├── grapher_plot_derivative │ ├── crc32.txt │ └── scenario.nws ├── grapher_plot_parametered_expression │ ├── crc32.txt │ └── scenario.nws ├── grapher_plot_rational_power │ ├── crc32.txt │ └── scenario.nws ├── grapher_plot_restriction_empty_field │ ├── crc32.txt │ └── scenario.nws ├── grapher_plot_sqrt_dep │ ├── crc32.txt │ └── scenario.nws ├── grapher_plot_undef_point │ ├── crc32.txt │ └── scenario.nws ├── grapher_polar_derivative │ ├── crc32.txt │ └── scenario.nws ├── grapher_polar_grid │ ├── crc32.txt │ └── scenario.nws ├── grapher_polar_in_varbox │ ├── crc32.txt │ └── scenario.nws ├── grapher_pop_menu_if_function_inactive │ ├── crc32.txt │ └── scenario.nws ├── grapher_regression_scatter_plot │ ├── crc32.txt │ └── scenario.nws ├── grapher_reload_after_store │ ├── crc32.txt │ └── scenario.nws ├── grapher_scatter_plot │ ├── crc32.txt │ └── scenario.nws ├── grapher_scatter_plot_with_undef │ ├── crc32.txt │ └── scenario.nws ├── grapher_set_domain │ ├── crc32.txt │ └── scenario.nws ├── grapher_single_point │ ├── crc32.txt │ └── scenario.nws ├── grapher_tangent_of_exp │ ├── crc32.txt │ └── scenario.nws ├── grapher_tangent_polar_parametric │ ├── crc32.txt │ └── scenario.nws ├── grapher_undefined_y_value │ ├── crc32.txt │ └── scenario.nws ├── grapher_update_function_out_of_grapher │ ├── crc32.txt │ └── scenario.nws ├── grapher_update_with_derivatives │ ├── crc32.txt │ └── scenario.nws ├── grapher_user_grid_unit │ ├── crc32.txt │ └── scenario.nws ├── grapher_values │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_abscissa_column_options │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_button_row │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_cell_size │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_delete_function │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_deletion_lines │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_derivative │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_derivative_column_options │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_function_column_options │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_header │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_intersection_preface │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_max_digits │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_navigation │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_preface_column_1 │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_preface_column_2 │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_preface_column_margin │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_reduction_fail │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_row_preface_height │ ├── crc32.txt │ └── scenario.nws ├── grapher_values_width_memoization │ ├── crc32.txt │ └── scenario.nws ├── grapher_y_dependencies │ ├── crc32.txt │ └── scenario.nws ├── grapher_y_given_x │ ├── crc32.txt │ └── scenario.nws ├── home_screen_bottom │ ├── crc32.txt │ └── scenario.nws ├── inference_can_choose_dataset │ ├── crc32.txt │ └── scenario.nws ├── inference_categorical_table_reload_dimensions │ ├── crc32.txt │ └── scenario.nws ├── inference_categorical_table_reload_dimensions_2 │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_destroy_cells │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_destroy_cells_2 │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_goodness_delete_column │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_goodness_graph │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_goodness_invalid │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_goodness_results_reload │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_goodness_table_selection_deselection │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_homogeneity_delete_column │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_homogeneity_graph │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_homogeneity_results_reload │ ├── crc32.txt │ └── scenario.nws ├── inference_chi2_homogeneity_table_selection_deselection │ ├── crc32.txt │ └── scenario.nws ├── inference_one_mean_clear_column │ ├── crc32.txt │ └── scenario.nws ├── inference_one_mean_input_dataset │ ├── crc32.txt │ └── scenario.nws ├── inference_one_mean_input_statistics │ ├── crc32.txt │ └── scenario.nws ├── inference_one_mean_invalid_inputs │ ├── crc32.txt │ └── scenario.nws ├── inference_one_proportion │ ├── crc32.txt │ └── scenario.nws ├── inference_proper_pattern_drawing │ ├── crc32.txt │ └── scenario.nws ├── inference_slope │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_data_change │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_delete_column │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_interval_almost_empty │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_open_graph_with_invalid_inputs │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_open_results_with_invalid_inputs │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_reentry │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_reload_dimensions │ ├── crc32.txt │ └── scenario.nws ├── inference_slope_table_reload │ ├── crc32.txt │ └── scenario.nws ├── inference_test_curve_zoom │ ├── crc32.txt │ └── scenario.nws ├── inference_two_means_input_dataset │ ├── crc32.txt │ └── scenario.nws ├── inference_two_means_input_statistics │ ├── crc32.txt │ └── scenario.nws ├── inference_two_means_navigate_input_pages │ ├── crc32.txt │ └── scenario.nws ├── inference_two_means_navigate_list │ ├── crc32.txt │ └── scenario.nws ├── inference_two_means_table_selection │ ├── crc32.txt │ └── scenario.nws ├── inference_two_proportions │ ├── crc32.txt │ └── scenario.nws ├── layout_field_serialization │ ├── crc32.txt │ └── scenario.nws ├── nl_logarithm │ ├── crc32.txt │ └── scenario.nws ├── nl_logarithm_nested │ ├── crc32.txt │ └── scenario.nws ├── no_cas │ ├── crc32.txt │ └── scenario.nws ├── parsing_edge_cases │ ├── crc32.txt │ └── scenario.nws ├── python_button_shell │ ├── crc32.txt │ └── scenario.nws ├── python_clipboard │ ├── crc32.txt │ └── scenario.nws ├── python_clipboard2 │ ├── crc32.txt │ └── scenario.nws ├── python_console_variablebox │ ├── crc32.txt │ └── scenario.nws ├── python_editor_delete │ ├── crc32.txt │ └── scenario.nws ├── python_empty_varbox │ ├── crc32.txt │ └── scenario.nws ├── python_home_button │ ├── crc32.txt │ └── scenario.nws ├── python_numpy_matplotlib_compatibility │ ├── crc32.txt │ └── scenario.nws ├── python_parabola │ ├── crc32.txt │ └── scenario.nws ├── python_script_name_interrupted_by_modal_view │ ├── crc32.txt │ └── scenario.nws ├── regression_auto_compute_range │ ├── crc32.txt │ └── scenario.nws ├── regression_calculation_1 │ ├── crc32.txt │ └── scenario.nws ├── regression_calculation_2 │ ├── crc32.txt │ └── scenario.nws ├── regression_calculation_3 │ ├── crc32.txt │ └── scenario.nws ├── regression_calculation_4 │ ├── crc32.txt │ └── scenario.nws ├── regression_calculation_5 │ ├── crc32.txt │ └── scenario.nws ├── regression_calculation_6 │ ├── crc32.txt │ └── scenario.nws ├── regression_calculation_7 │ ├── crc32.txt │ └── scenario.nws ├── regression_cubic_x_given_y │ ├── crc32.txt │ └── scenario.nws ├── regression_data_not_suitable │ ├── crc32.txt │ └── scenario.nws ├── regression_function_in_varbox │ ├── crc32.txt │ └── scenario.nws ├── regression_function_not_in_grapher │ ├── crc32.txt │ └── scenario.nws ├── regression_graph_pan │ ├── crc32.txt │ └── scenario.nws ├── regression_logistic │ ├── crc32.txt │ └── scenario.nws ├── regression_model_list │ ├── crc32.txt │ └── scenario.nws ├── regression_trigonometric │ ├── crc32.txt │ └── scenario.nws ├── regression_x_y_predictions │ ├── crc32.txt │ └── scenario.nws ├── sequences_calculation_menu │ ├── crc32.txt │ └── scenario.nws ├── sequences_change_color │ ├── crc32.txt │ └── scenario.nws ├── sequences_change_first_index │ ├── crc32.txt │ └── scenario.nws ├── sequences_cobweb_1 │ ├── crc32.txt │ └── scenario.nws ├── sequences_cobweb_2 │ ├── crc32.txt │ └── scenario.nws ├── sequences_cobweb_dependency_first_term │ ├── crc32.txt │ └── scenario.nws ├── sequences_delete_sequence │ ├── crc32.txt │ └── scenario.nws ├── sequences_empty_expression │ ├── crc32.txt │ └── scenario.nws ├── sequences_graph_1 │ ├── crc32.txt │ └── scenario.nws ├── sequences_graph_2 │ ├── crc32.txt │ └── scenario.nws ├── sequences_graph_navigate_and_goto │ ├── crc32.txt │ └── scenario.nws ├── sequences_graph_sum_terms │ ├── crc32.txt │ └── scenario.nws ├── sequences_graph_zoom_and_ranges │ ├── crc32.txt │ └── scenario.nws ├── sequences_hide_sequence │ ├── crc32.txt │ └── scenario.nws ├── sequences_in_1D_field │ ├── crc32.txt │ └── scenario.nws ├── sequences_interdependency │ ├── crc32.txt │ └── scenario.nws ├── sequences_interdependency_impossible │ ├── crc32.txt │ └── scenario.nws ├── sequences_invalid_dimension │ ├── crc32.txt │ └── scenario.nws ├── sequences_linear_edition │ ├── crc32.txt │ └── scenario.nws ├── sequences_values_clear_on_button_row │ ├── crc32.txt │ └── scenario.nws ├── sequences_values_deletion_line │ ├── crc32.txt │ └── scenario.nws ├── sequences_values_interval_column │ ├── crc32.txt │ └── scenario.nws ├── sequences_values_sum_terms │ ├── crc32.txt │ └── scenario.nws ├── settings │ ├── crc32.txt │ └── scenario.nws ├── settings_screen_timeout │ ├── crc32.txt │ └── scenario.nws ├── settings_scroll_reload │ ├── crc32.txt │ └── scenario.nws ├── settings_submenu_row_scrolling_reset │ ├── crc32.txt │ └── scenario.nws ├── shared_text_buffer_reinit │ ├── crc32.txt │ └── scenario.nws ├── solver_approximate_delta │ ├── crc32.txt │ └── scenario.nws ├── solver_approximate_sequence │ ├── crc32.txt │ └── scenario.nws ├── solver_approximate_with_user_variable │ ├── crc32.txt │ └── scenario.nws ├── solver_autocompletion │ ├── crc32.txt │ └── scenario.nws ├── solver_display_permission_derivative │ ├── crc32.txt │ └── scenario.nws ├── solver_display_permission_sequence │ ├── crc32.txt │ └── scenario.nws ├── solver_equation_with_list │ ├── crc32.txt │ └── scenario.nws ├── solver_equation_with_matrix │ ├── crc32.txt │ └── scenario.nws ├── solver_ignore_list_variables │ ├── crc32.txt │ └── scenario.nws ├── solver_interval │ ├── crc32.txt │ └── scenario.nws ├── solver_linear_system_infinite_number_solutions │ ├── crc32.txt │ └── scenario.nws ├── solver_linear_system_no_solution │ ├── crc32.txt │ └── scenario.nws ├── solver_no_equations │ ├── crc32.txt │ └── scenario.nws ├── solver_non_linear_system │ ├── crc32.txt │ └── scenario.nws ├── solver_nonreal_equation │ ├── crc32.txt │ └── scenario.nws ├── solver_polynomial_negative_discriminant │ ├── crc32.txt │ └── scenario.nws ├── solver_polynomial_null_discriminant │ ├── crc32.txt │ └── scenario.nws ├── solver_polynomial_positive_discriminant │ ├── crc32.txt │ └── scenario.nws ├── solver_predefined_variables │ ├── crc32.txt │ └── scenario.nws ├── solver_proper_complex_reduction │ ├── crc32.txt │ └── scenario.nws ├── solver_solution_approximate_equal_sign │ ├── crc32.txt │ └── scenario.nws ├── solver_solution_exact_equal_sign │ ├── crc32.txt │ └── scenario.nws ├── solver_solution_polar_format │ ├── crc32.txt │ └── scenario.nws ├── solver_solution_reset_memoization │ ├── crc32.txt │ └── scenario.nws ├── solver_solutions_less_than_ten │ ├── crc32.txt │ └── scenario.nws ├── solver_solutions_offset_reset │ ├── crc32.txt │ └── scenario.nws ├── solver_symbol_in_function │ ├── crc32.txt │ └── scenario.nws ├── solver_unhandled_equation │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_cumulative_frequencies_column_1 │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_cumulative_frequencies_column_2 │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_cumulative_frequencies_column_3 │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_cumulative_frequencies_column_4 │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_fill_and_clear │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_fill_column_randintnorep │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_fill_with_other_list │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_insertion_preserves_scroll │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_invalid_frequencies │ ├── crc32.txt │ └── scenario.nws ├── statistics_data_stays_deactivated │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_boxplot │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_cumulative_frequencies │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_histogram │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_histogram_2 │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_histogram_active_series │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_histogram_bar_height_zero │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_histogram_minimal_bar_height │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_histogram_scroll │ ├── crc32.txt │ └── scenario.nws ├── statistics_graph_normal_probability_plot │ ├── crc32.txt │ └── scenario.nws ├── statistics_histogram_double_precision │ ├── crc32.txt │ └── scenario.nws ├── statistics_invalid_data │ ├── crc32.txt │ └── scenario.nws ├── statistics_memoize_formula_layout │ ├── crc32.txt │ └── scenario.nws ├── statistics_values_table │ ├── crc32.txt │ └── scenario.nws ├── store_menu │ ├── crc32.txt │ └── scenario.nws ├── store_menu_linear_edition │ ├── crc32.txt │ └── scenario.nws ├── text_field_scroll │ ├── crc32.txt │ └── scenario.nws ├── toolbox_calculation │ ├── crc32.txt │ └── scenario.nws ├── toolbox_grapher │ ├── crc32.txt │ └── scenario.nws ├── toolbox_grapher_domain │ ├── crc32.txt │ └── scenario.nws ├── toolbox_saved_scroll │ ├── crc32.txt │ └── scenario.nws ├── variable_box │ ├── crc32.txt │ └── scenario.nws ├── xnt_default_cycle_start │ ├── crc32.txt │ └── scenario.nws ├── xnt_layout_1D │ ├── crc32.txt │ └── scenario.nws ├── xnt_layout_2D │ ├── crc32.txt │ └── scenario.nws └── xnt_text_1D │ ├── crc32.txt │ └── scenario.nws └── screenshots_dataset_cas ├── calculation_derivatives ├── crc32.txt └── scenario.nws ├── calculation_simple ├── crc32.txt └── scenario.nws └── grapher_formal_details ├── crc32.txt └── scenario.nws /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/.clang-format -------------------------------------------------------------------------------- /.emsdk-version: -------------------------------------------------------------------------------- 1 | 4.0.10 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 2.7.2 2 | nodejs 22.14.0 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/README.md -------------------------------------------------------------------------------- /apps/apps_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/apps_container.cpp -------------------------------------------------------------------------------- /apps/apps_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/apps_container.h -------------------------------------------------------------------------------- /apps/apps_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/apps_window.cpp -------------------------------------------------------------------------------- /apps/apps_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/apps_window.h -------------------------------------------------------------------------------- /apps/battery_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/battery_timer.cpp -------------------------------------------------------------------------------- /apps/battery_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/battery_timer.h -------------------------------------------------------------------------------- /apps/battery_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/battery_view.cpp -------------------------------------------------------------------------------- /apps/battery_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/battery_view.h -------------------------------------------------------------------------------- /apps/calculation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/calculation/Makefile -------------------------------------------------------------------------------- /apps/calculation/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/calculation/app.cpp -------------------------------------------------------------------------------- /apps/calculation/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/calculation/app.h -------------------------------------------------------------------------------- /apps/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/Makefile -------------------------------------------------------------------------------- /apps/code/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/app.cpp -------------------------------------------------------------------------------- /apps/code/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/app.h -------------------------------------------------------------------------------- /apps/code/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/clipboard.cpp -------------------------------------------------------------------------------- /apps/code/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/clipboard.h -------------------------------------------------------------------------------- /apps/code/code_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/code_icon.png -------------------------------------------------------------------------------- /apps/code/console_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/console_line.h -------------------------------------------------------------------------------- /apps/code/console_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/console_store.h -------------------------------------------------------------------------------- /apps/code/editor_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/editor_view.cpp -------------------------------------------------------------------------------- /apps/code/editor_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/editor_view.h -------------------------------------------------------------------------------- /apps/code/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/helpers.cpp -------------------------------------------------------------------------------- /apps/code/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/helpers.h -------------------------------------------------------------------------------- /apps/code/i18n/base.universal.i18n: -------------------------------------------------------------------------------- 1 | CodeAppCapital = "PYTHON" 2 | ConsolePrompt = ">>> " 3 | -------------------------------------------------------------------------------- /apps/code/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/script.cpp -------------------------------------------------------------------------------- /apps/code/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/script.h -------------------------------------------------------------------------------- /apps/code/script_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/script_node.h -------------------------------------------------------------------------------- /apps/code/script_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/script_store.h -------------------------------------------------------------------------------- /apps/code/subtitle_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/code/subtitle_cell.h -------------------------------------------------------------------------------- /apps/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/constant.h -------------------------------------------------------------------------------- /apps/distributions/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/distributions/app.h -------------------------------------------------------------------------------- /apps/elements/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/elements/Makefile -------------------------------------------------------------------------------- /apps/elements/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/elements/app.cpp -------------------------------------------------------------------------------- /apps/elements/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/elements/app.h -------------------------------------------------------------------------------- /apps/elements/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/elements/palette.h -------------------------------------------------------------------------------- /apps/exam_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/exam_icon.png -------------------------------------------------------------------------------- /apps/finance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/finance/Makefile -------------------------------------------------------------------------------- /apps/finance/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/finance/app.cpp -------------------------------------------------------------------------------- /apps/finance/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/finance/app.h -------------------------------------------------------------------------------- /apps/finance/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/finance/data.cpp -------------------------------------------------------------------------------- /apps/finance/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/finance/data.h -------------------------------------------------------------------------------- /apps/global_preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/global_preferences.h -------------------------------------------------------------------------------- /apps/graph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/graph/Makefile -------------------------------------------------------------------------------- /apps/graph/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/graph/app.cpp -------------------------------------------------------------------------------- /apps/graph/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/graph/app.h -------------------------------------------------------------------------------- /apps/graph/graph_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/graph/graph_icon.png -------------------------------------------------------------------------------- /apps/graph/test/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/graph/test/helper.h -------------------------------------------------------------------------------- /apps/hardware_test/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/hardware_test/app.h -------------------------------------------------------------------------------- /apps/helpers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/helpers.mk -------------------------------------------------------------------------------- /apps/home/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/Makefile -------------------------------------------------------------------------------- /apps/home/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/app.cpp -------------------------------------------------------------------------------- /apps/home/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/app.h -------------------------------------------------------------------------------- /apps/home/app_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/app_cell.cpp -------------------------------------------------------------------------------- /apps/home/app_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/app_cell.h -------------------------------------------------------------------------------- /apps/home/apps_layout.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/apps_layout.csv -------------------------------------------------------------------------------- /apps/home/apps_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/apps_layout.py -------------------------------------------------------------------------------- /apps/home/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/controller.cpp -------------------------------------------------------------------------------- /apps/home/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/home/controller.h -------------------------------------------------------------------------------- /apps/i18n.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/i18n.mak -------------------------------------------------------------------------------- /apps/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/i18n.py -------------------------------------------------------------------------------- /apps/inference/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/inference/Makefile -------------------------------------------------------------------------------- /apps/inference/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/inference/app.cpp -------------------------------------------------------------------------------- /apps/inference/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/inference/app.h -------------------------------------------------------------------------------- /apps/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/init.cpp -------------------------------------------------------------------------------- /apps/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/init.h -------------------------------------------------------------------------------- /apps/init_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/init_tests.cpp -------------------------------------------------------------------------------- /apps/language_de.universal.i18n: -------------------------------------------------------------------------------- 1 | LanguageDE = "Deutsch" 2 | -------------------------------------------------------------------------------- /apps/language_en.universal.i18n: -------------------------------------------------------------------------------- 1 | LanguageEN = "English" 2 | -------------------------------------------------------------------------------- /apps/language_es.universal.i18n: -------------------------------------------------------------------------------- 1 | LanguageES = "Español" 2 | -------------------------------------------------------------------------------- /apps/language_fr.universal.i18n: -------------------------------------------------------------------------------- 1 | LanguageFR = "Français" 2 | -------------------------------------------------------------------------------- /apps/language_it.universal.i18n: -------------------------------------------------------------------------------- 1 | LanguageIT = "Italiano" 2 | -------------------------------------------------------------------------------- /apps/language_nl.universal.i18n: -------------------------------------------------------------------------------- 1 | LanguageNL = "Nederlands" 2 | -------------------------------------------------------------------------------- /apps/language_pt.universal.i18n: -------------------------------------------------------------------------------- 1 | LanguagePT = "Português" 2 | -------------------------------------------------------------------------------- /apps/lock_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/lock_view.cpp -------------------------------------------------------------------------------- /apps/lock_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/lock_view.h -------------------------------------------------------------------------------- /apps/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/main.cpp -------------------------------------------------------------------------------- /apps/math_preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/math_preferences.h -------------------------------------------------------------------------------- /apps/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/module.mak -------------------------------------------------------------------------------- /apps/on_boarding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/on_boarding/Makefile -------------------------------------------------------------------------------- /apps/on_boarding/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/on_boarding/app.cpp -------------------------------------------------------------------------------- /apps/on_boarding/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/on_boarding/app.h -------------------------------------------------------------------------------- /apps/regression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/regression/Makefile -------------------------------------------------------------------------------- /apps/regression/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/regression/app.cpp -------------------------------------------------------------------------------- /apps/regression/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/regression/app.h -------------------------------------------------------------------------------- /apps/regression/i18n/base.universal.i18n: -------------------------------------------------------------------------------- 1 | Dash = "-" 2 | -------------------------------------------------------------------------------- /apps/regression/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/regression/model.cpp -------------------------------------------------------------------------------- /apps/regression/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/regression/model.h -------------------------------------------------------------------------------- /apps/regression/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/regression/store.cpp -------------------------------------------------------------------------------- /apps/regression/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/regression/store.h -------------------------------------------------------------------------------- /apps/sequence/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/sequence/Makefile -------------------------------------------------------------------------------- /apps/sequence/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/sequence/app.cpp -------------------------------------------------------------------------------- /apps/sequence/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/sequence/app.h -------------------------------------------------------------------------------- /apps/settings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/settings/Makefile -------------------------------------------------------------------------------- /apps/settings/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/settings/app.cpp -------------------------------------------------------------------------------- /apps/settings/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/settings/app.h -------------------------------------------------------------------------------- /apps/shared.de.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared.de.i18n -------------------------------------------------------------------------------- /apps/shared.en.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared.en.i18n -------------------------------------------------------------------------------- /apps/shared.es.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared.es.i18n -------------------------------------------------------------------------------- /apps/shared.fr.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared.fr.i18n -------------------------------------------------------------------------------- /apps/shared.it.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared.it.i18n -------------------------------------------------------------------------------- /apps/shared.nl.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared.nl.i18n -------------------------------------------------------------------------------- /apps/shared.pt.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared.pt.i18n -------------------------------------------------------------------------------- /apps/shared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/Makefile -------------------------------------------------------------------------------- /apps/shared/banner_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/banner_view.h -------------------------------------------------------------------------------- /apps/shared/color_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/color_cell.h -------------------------------------------------------------------------------- /apps/shared/color_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/color_names.h -------------------------------------------------------------------------------- /apps/shared/cursor_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/cursor_view.h -------------------------------------------------------------------------------- /apps/shared/dots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/dots.cpp -------------------------------------------------------------------------------- /apps/shared/dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/dots.h -------------------------------------------------------------------------------- /apps/shared/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/function.cpp -------------------------------------------------------------------------------- /apps/shared/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/function.h -------------------------------------------------------------------------------- /apps/shared/interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/interval.cpp -------------------------------------------------------------------------------- /apps/shared/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/interval.h -------------------------------------------------------------------------------- /apps/shared/math_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/math_app.h -------------------------------------------------------------------------------- /apps/shared/ok_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/ok_view.cpp -------------------------------------------------------------------------------- /apps/shared/ok_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/ok_view.h -------------------------------------------------------------------------------- /apps/shared/plot_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/plot_view.cpp -------------------------------------------------------------------------------- /apps/shared/plot_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/plot_view.h -------------------------------------------------------------------------------- /apps/shared/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/sequence.cpp -------------------------------------------------------------------------------- /apps/shared/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/sequence.h -------------------------------------------------------------------------------- /apps/shared/shared_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/shared_app.h -------------------------------------------------------------------------------- /apps/shared/store_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/store_app.cpp -------------------------------------------------------------------------------- /apps/shared/store_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/shared/store_app.h -------------------------------------------------------------------------------- /apps/solver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/solver/Makefile -------------------------------------------------------------------------------- /apps/solver/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/solver/app.cpp -------------------------------------------------------------------------------- /apps/solver/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/solver/app.h -------------------------------------------------------------------------------- /apps/solver/equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/solver/equation.cpp -------------------------------------------------------------------------------- /apps/solver/equation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/solver/equation.h -------------------------------------------------------------------------------- /apps/solver/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/solver/solution.h -------------------------------------------------------------------------------- /apps/statistics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/statistics/Makefile -------------------------------------------------------------------------------- /apps/statistics/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/statistics/app.cpp -------------------------------------------------------------------------------- /apps/statistics/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/statistics/app.h -------------------------------------------------------------------------------- /apps/statistics/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/statistics/store.cpp -------------------------------------------------------------------------------- /apps/statistics/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/statistics/store.h -------------------------------------------------------------------------------- /apps/suspend_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/suspend_timer.cpp -------------------------------------------------------------------------------- /apps/suspend_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/suspend_timer.h -------------------------------------------------------------------------------- /apps/title_bar_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/title_bar_view.cpp -------------------------------------------------------------------------------- /apps/title_bar_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/title_bar_view.h -------------------------------------------------------------------------------- /apps/toolbox.de.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/toolbox.de.i18n -------------------------------------------------------------------------------- /apps/toolbox.en.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/toolbox.en.i18n -------------------------------------------------------------------------------- /apps/toolbox.es.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/toolbox.es.i18n -------------------------------------------------------------------------------- /apps/toolbox.fr.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/toolbox.fr.i18n -------------------------------------------------------------------------------- /apps/toolbox.it.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/toolbox.it.i18n -------------------------------------------------------------------------------- /apps/toolbox.nl.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/toolbox.nl.i18n -------------------------------------------------------------------------------- /apps/toolbox.pt.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/toolbox.pt.i18n -------------------------------------------------------------------------------- /apps/usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/usb/Makefile -------------------------------------------------------------------------------- /apps/usb/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/usb/app.cpp -------------------------------------------------------------------------------- /apps/usb/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/usb/app.h -------------------------------------------------------------------------------- /apps/variables.de.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/variables.de.i18n -------------------------------------------------------------------------------- /apps/variables.en.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/variables.en.i18n -------------------------------------------------------------------------------- /apps/variables.es.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/variables.es.i18n -------------------------------------------------------------------------------- /apps/variables.fr.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/variables.fr.i18n -------------------------------------------------------------------------------- /apps/variables.it.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/variables.it.i18n -------------------------------------------------------------------------------- /apps/variables.nl.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/variables.nl.i18n -------------------------------------------------------------------------------- /apps/variables.pt.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/apps/variables.pt.i18n -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/docs/architecture.svg -------------------------------------------------------------------------------- /docs/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/docs/build/README.md -------------------------------------------------------------------------------- /docs/epsilon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/docs/epsilon.svg -------------------------------------------------------------------------------- /docs/ion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/docs/ion/README.md -------------------------------------------------------------------------------- /docs/poincare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/docs/poincare/README.md -------------------------------------------------------------------------------- /eadk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/Makefile -------------------------------------------------------------------------------- /eadk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/README.md -------------------------------------------------------------------------------- /eadk/include/eadk/eadk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/include/eadk/eadk.h -------------------------------------------------------------------------------- /eadk/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/module.mak -------------------------------------------------------------------------------- /eadk/src/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/src/linker.ld -------------------------------------------------------------------------------- /eadk/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/src/platform.c -------------------------------------------------------------------------------- /eadk/src/simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/src/simulator.cpp -------------------------------------------------------------------------------- /eadk/src/svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/src/svc.cpp -------------------------------------------------------------------------------- /eadk/src/trampoline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/eadk/src/trampoline.cpp -------------------------------------------------------------------------------- /escher/image/caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/image/caret.png -------------------------------------------------------------------------------- /escher/image/inliner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/image/inliner.c -------------------------------------------------------------------------------- /escher/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/module.mak -------------------------------------------------------------------------------- /escher/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/app.cpp -------------------------------------------------------------------------------- /escher/src/bordered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/bordered.cpp -------------------------------------------------------------------------------- /escher/src/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/clipboard.cpp -------------------------------------------------------------------------------- /escher/src/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/container.cpp -------------------------------------------------------------------------------- /escher/src/gauge_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/gauge_view.cpp -------------------------------------------------------------------------------- /escher/src/image_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/image_view.cpp -------------------------------------------------------------------------------- /escher/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/init.cpp -------------------------------------------------------------------------------- /escher/src/invocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/invocation.cpp -------------------------------------------------------------------------------- /escher/src/key_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/key_view.cpp -------------------------------------------------------------------------------- /escher/src/menu_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/menu_cell.cpp -------------------------------------------------------------------------------- /escher/src/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/palette.cpp -------------------------------------------------------------------------------- /escher/src/responder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/responder.cpp -------------------------------------------------------------------------------- /escher/src/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/run_loop.cpp -------------------------------------------------------------------------------- /escher/src/stack_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/stack_view.cpp -------------------------------------------------------------------------------- /escher/src/tab_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/tab_view.cpp -------------------------------------------------------------------------------- /escher/src/table_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/table_view.cpp -------------------------------------------------------------------------------- /escher/src/text_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/text_area.cpp -------------------------------------------------------------------------------- /escher/src/text_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/text_input.cpp -------------------------------------------------------------------------------- /escher/src/text_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/text_view.cpp -------------------------------------------------------------------------------- /escher/src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/timer.cpp -------------------------------------------------------------------------------- /escher/src/toolbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/toolbox.cpp -------------------------------------------------------------------------------- /escher/src/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/view.cpp -------------------------------------------------------------------------------- /escher/src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/escher/src/window.cpp -------------------------------------------------------------------------------- /external_apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/external_apps/.gitignore -------------------------------------------------------------------------------- /external_apps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/external_apps/LICENSE -------------------------------------------------------------------------------- /external_apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/external_apps/README.md -------------------------------------------------------------------------------- /external_apps/rpn_cpp/.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | -------------------------------------------------------------------------------- /external_apps/sample_c/.gitignore: -------------------------------------------------------------------------------- 1 | /output/ 2 | -------------------------------------------------------------------------------- /external_apps/sample_c/src/input.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /external_apps/sample_cpp/.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | -------------------------------------------------------------------------------- /external_apps/sample_rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /haussmann/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /haussmann/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/Makefile -------------------------------------------------------------------------------- /haussmann/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/README.md -------------------------------------------------------------------------------- /haussmann/src/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/config.mak -------------------------------------------------------------------------------- /haussmann/src/configs/linux.mak: -------------------------------------------------------------------------------- 1 | TOOLCHAIN ?= host-gcc 2 | -------------------------------------------------------------------------------- /haussmann/src/configs/u0-discovery.mak: -------------------------------------------------------------------------------- 1 | TOOLCHAIN ?= arm-gcc-m0plus 2 | -------------------------------------------------------------------------------- /haussmann/src/configs/windows.mak: -------------------------------------------------------------------------------- 1 | TOOLCHAIN ?= windows 2 | -------------------------------------------------------------------------------- /haussmann/src/docs.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/docs.mak -------------------------------------------------------------------------------- /haussmann/src/flavor.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/flavor.mak -------------------------------------------------------------------------------- /haussmann/src/format.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/format.mak -------------------------------------------------------------------------------- /haussmann/src/goal.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/goal.mak -------------------------------------------------------------------------------- /haussmann/src/helpers.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/helpers.mak -------------------------------------------------------------------------------- /haussmann/src/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/module.mak -------------------------------------------------------------------------------- /haussmann/src/rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/haussmann/src/rules.mak -------------------------------------------------------------------------------- /haussmann/src/rules/n0110.mak: -------------------------------------------------------------------------------- 1 | include $(PATH_haussmann)/src/rules/shared.arm-gcc.mak 2 | -------------------------------------------------------------------------------- /haussmann/src/rules/n0115.mak: -------------------------------------------------------------------------------- 1 | include $(PATH_haussmann)/src/rules/shared.arm-gcc.mak 2 | -------------------------------------------------------------------------------- /haussmann/src/rules/n0120.mak: -------------------------------------------------------------------------------- 1 | include $(PATH_haussmann)/src/rules/shared.arm-gcc.mak 2 | -------------------------------------------------------------------------------- /haussmann/src/rules/u0-discovery.mak: -------------------------------------------------------------------------------- 1 | include $(PATH_haussmann)/src/rules/shared.arm-gcc.mak 2 | -------------------------------------------------------------------------------- /ion/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/README.txt -------------------------------------------------------------------------------- /ion/android.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/android.mak -------------------------------------------------------------------------------- /ion/epsilon.device.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/epsilon.device.mak -------------------------------------------------------------------------------- /ion/include/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion.h -------------------------------------------------------------------------------- /ion/include/ion/battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/battery.h -------------------------------------------------------------------------------- /ion/include/ion/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/console.h -------------------------------------------------------------------------------- /ion/include/ion/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/crc.h -------------------------------------------------------------------------------- /ion/include/ion/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/display.h -------------------------------------------------------------------------------- /ion/include/ion/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/events.h -------------------------------------------------------------------------------- /ion/include/ion/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/led.h -------------------------------------------------------------------------------- /ion/include/ion/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/power.h -------------------------------------------------------------------------------- /ion/include/ion/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/reset.h -------------------------------------------------------------------------------- /ion/include/ion/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/timing.h -------------------------------------------------------------------------------- /ion/include/ion/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/include/ion/usb.h -------------------------------------------------------------------------------- /ion/ios.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/ios.mak -------------------------------------------------------------------------------- /ion/linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/linux.mak -------------------------------------------------------------------------------- /ion/macos.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/macos.mak -------------------------------------------------------------------------------- /ion/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/module.mak -------------------------------------------------------------------------------- /ion/shared.apple.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/shared.apple.mak -------------------------------------------------------------------------------- /ion/shared.simulator.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/shared.simulator.mak -------------------------------------------------------------------------------- /ion/src/device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/src/device/README.md -------------------------------------------------------------------------------- /ion/src/device/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/src/device/log.cpp -------------------------------------------------------------------------------- /ion/src/shared/dummy/fcc_id.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | const char* Ion::fccId() { return "NA"; } 4 | -------------------------------------------------------------------------------- /ion/src/shared/dummy/stack.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | bool Ion::stackSafe() { return true; } 4 | -------------------------------------------------------------------------------- /ion/src/shared/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/src/shared/events.cpp -------------------------------------------------------------------------------- /ion/src/shared/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/src/shared/events.h -------------------------------------------------------------------------------- /ion/src/shared/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/src/shared/init.h -------------------------------------------------------------------------------- /ion/src/shared/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/src/shared/keyboard.h -------------------------------------------------------------------------------- /ion/src/shared/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/src/shared/led.h -------------------------------------------------------------------------------- /ion/src/simulator/external/sdl/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ion/src/simulator/shared/usb.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ion/test/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/test/crc32.cpp -------------------------------------------------------------------------------- /ion/test/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/test/events.cpp -------------------------------------------------------------------------------- /ion/test/exam_bytes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/test/exam_bytes.cpp -------------------------------------------------------------------------------- /ion/test/exam_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/test/exam_mode.cpp -------------------------------------------------------------------------------- /ion/test/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/test/keyboard.cpp -------------------------------------------------------------------------------- /ion/test/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/test/storage.cpp -------------------------------------------------------------------------------- /ion/web.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/web.mak -------------------------------------------------------------------------------- /ion/windows.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/ion/windows.mak -------------------------------------------------------------------------------- /kandinsky/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/module.mak -------------------------------------------------------------------------------- /kandinsky/src/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/src/color.cpp -------------------------------------------------------------------------------- /kandinsky/src/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/src/font.cpp -------------------------------------------------------------------------------- /kandinsky/src/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/src/line.cpp -------------------------------------------------------------------------------- /kandinsky/src/point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/src/point.cpp -------------------------------------------------------------------------------- /kandinsky/src/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/src/rect.cpp -------------------------------------------------------------------------------- /kandinsky/test/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/test/color.cpp -------------------------------------------------------------------------------- /kandinsky/test/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/test/font.cpp -------------------------------------------------------------------------------- /kandinsky/test/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/kandinsky/test/rect.cpp -------------------------------------------------------------------------------- /liba/Makefile.bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/Makefile.bridge -------------------------------------------------------------------------------- /liba/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/README.txt -------------------------------------------------------------------------------- /liba/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/alloca.h -------------------------------------------------------------------------------- /liba/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/assert.h -------------------------------------------------------------------------------- /liba/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/ctype.h -------------------------------------------------------------------------------- /liba/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/errno.h -------------------------------------------------------------------------------- /liba/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/float.h -------------------------------------------------------------------------------- /liba/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/limits.h -------------------------------------------------------------------------------- /liba/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/math.h -------------------------------------------------------------------------------- /liba/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/setjmp.h -------------------------------------------------------------------------------- /liba/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/stdarg.h -------------------------------------------------------------------------------- /liba/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/stdbool.h -------------------------------------------------------------------------------- /liba/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/stddef.h -------------------------------------------------------------------------------- /liba/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/stdint.h -------------------------------------------------------------------------------- /liba/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/stdio.h -------------------------------------------------------------------------------- /liba/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/stdlib.h -------------------------------------------------------------------------------- /liba/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/string.h -------------------------------------------------------------------------------- /liba/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/strings.h -------------------------------------------------------------------------------- /liba/include/sys/cdefs.h: -------------------------------------------------------------------------------- 1 | // OpenBSD requires this file to be present 2 | -------------------------------------------------------------------------------- /liba/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/sys/types.h -------------------------------------------------------------------------------- /liba/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/include/unistd.h -------------------------------------------------------------------------------- /liba/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/module.mak -------------------------------------------------------------------------------- /liba/src/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/abs.c -------------------------------------------------------------------------------- /liba/src/aeabi-rt/llsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/aeabi-rt/llsl.c -------------------------------------------------------------------------------- /liba/src/aeabi-rt/llsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/aeabi-rt/llsr.c -------------------------------------------------------------------------------- /liba/src/armv6m/longjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/armv6m/longjmp.s -------------------------------------------------------------------------------- /liba/src/armv6m/setjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/armv6m/setjmp.s -------------------------------------------------------------------------------- /liba/src/armv7m/longjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/armv7m/longjmp.s -------------------------------------------------------------------------------- /liba/src/armv7m/setjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/armv7m/setjmp.s -------------------------------------------------------------------------------- /liba/src/bridge/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/bridge/alloca.h -------------------------------------------------------------------------------- /liba/src/bridge/bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/bridge/bridge.c -------------------------------------------------------------------------------- /liba/src/bridge/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/bridge/string.h -------------------------------------------------------------------------------- /liba/src/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/bzero.c -------------------------------------------------------------------------------- /liba/src/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/calloc.c -------------------------------------------------------------------------------- /liba/src/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/ctype.c -------------------------------------------------------------------------------- /liba/src/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/errno.c -------------------------------------------------------------------------------- /liba/src/external/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: false 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /liba/src/fpclassify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/fpclassify.c -------------------------------------------------------------------------------- /liba/src/fpclassifyf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/fpclassifyf.c -------------------------------------------------------------------------------- /liba/src/ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/ieee754.c -------------------------------------------------------------------------------- /liba/src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/malloc.c -------------------------------------------------------------------------------- /liba/src/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/memcmp.c -------------------------------------------------------------------------------- /liba/src/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/memcpy.c -------------------------------------------------------------------------------- /liba/src/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/memmove.c -------------------------------------------------------------------------------- /liba/src/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/memset.c -------------------------------------------------------------------------------- /liba/src/nearbyint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/nearbyint.c -------------------------------------------------------------------------------- /liba/src/nearbyintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/nearbyintf.c -------------------------------------------------------------------------------- /liba/src/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/strchr.c -------------------------------------------------------------------------------- /liba/src/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/strcmp.c -------------------------------------------------------------------------------- /liba/src/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/strlcat.c -------------------------------------------------------------------------------- /liba/src/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/strlcpy.c -------------------------------------------------------------------------------- /liba/src/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/src/strlen.c -------------------------------------------------------------------------------- /liba/test/aeabi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/aeabi.c -------------------------------------------------------------------------------- /liba/test/double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/double.c -------------------------------------------------------------------------------- /liba/test/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/float.c -------------------------------------------------------------------------------- /liba/test/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/helpers.h -------------------------------------------------------------------------------- /liba/test/ieee754.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/ieee754.c -------------------------------------------------------------------------------- /liba/test/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/limits.c -------------------------------------------------------------------------------- /liba/test/long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/long.c -------------------------------------------------------------------------------- /liba/test/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/math.c -------------------------------------------------------------------------------- /liba/test/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/setjmp.c -------------------------------------------------------------------------------- /liba/test/stddef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/stddef.c -------------------------------------------------------------------------------- /liba/test/stdint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/stdint.c -------------------------------------------------------------------------------- /liba/test/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/liba/test/strlcpy.c -------------------------------------------------------------------------------- /libaxx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/README.txt -------------------------------------------------------------------------------- /libaxx/include/_pair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/_pair -------------------------------------------------------------------------------- /libaxx/include/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/algorithm -------------------------------------------------------------------------------- /libaxx/include/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/array -------------------------------------------------------------------------------- /libaxx/include/bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/bit -------------------------------------------------------------------------------- /libaxx/include/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/cmath -------------------------------------------------------------------------------- /libaxx/include/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/complex -------------------------------------------------------------------------------- /libaxx/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/complex.h -------------------------------------------------------------------------------- /libaxx/include/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/iostream -------------------------------------------------------------------------------- /libaxx/include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/new -------------------------------------------------------------------------------- /libaxx/include/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/ostream -------------------------------------------------------------------------------- /libaxx/include/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/span -------------------------------------------------------------------------------- /libaxx/include/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/include/utility -------------------------------------------------------------------------------- /libaxx/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/module.mak -------------------------------------------------------------------------------- /libaxx/src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/libaxx/src/new.cpp -------------------------------------------------------------------------------- /omg/include/omg/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/array.h -------------------------------------------------------------------------------- /omg/include/omg/concept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/concept.h -------------------------------------------------------------------------------- /omg/include/omg/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/enums.h -------------------------------------------------------------------------------- /omg/include/omg/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/float.h -------------------------------------------------------------------------------- /omg/include/omg/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/ieee754.h -------------------------------------------------------------------------------- /omg/include/omg/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/list.h -------------------------------------------------------------------------------- /omg/include/omg/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/memory.h -------------------------------------------------------------------------------- /omg/include/omg/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/print.h -------------------------------------------------------------------------------- /omg/include/omg/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/round.h -------------------------------------------------------------------------------- /omg/include/omg/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/stack.h -------------------------------------------------------------------------------- /omg/include/omg/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/include/omg/string.h -------------------------------------------------------------------------------- /omg/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/module.mak -------------------------------------------------------------------------------- /omg/src/arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/arithmetic.cpp -------------------------------------------------------------------------------- /omg/src/code_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/code_point.cpp -------------------------------------------------------------------------------- /omg/src/directions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/directions.cpp -------------------------------------------------------------------------------- /omg/src/external/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: false 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /omg/src/float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/float.cpp -------------------------------------------------------------------------------- /omg/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/list.cpp -------------------------------------------------------------------------------- /omg/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/memory.cpp -------------------------------------------------------------------------------- /omg/src/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/print.cpp -------------------------------------------------------------------------------- /omg/src/utf8_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/utf8_decoder.cpp -------------------------------------------------------------------------------- /omg/src/utf8_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/src/utf8_helper.cpp -------------------------------------------------------------------------------- /omg/test/arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/test/arithmetic.cpp -------------------------------------------------------------------------------- /omg/test/bit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/test/bit_helper.cpp -------------------------------------------------------------------------------- /omg/test/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/test/memory.cpp -------------------------------------------------------------------------------- /omg/test/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/test/print.cpp -------------------------------------------------------------------------------- /omg/test/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/test/ring_buffer.cpp -------------------------------------------------------------------------------- /omg/test/utf8_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/test/utf8_decoder.cpp -------------------------------------------------------------------------------- /omg/test/utf8_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/omg/test/utf8_helper.cpp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/package.json -------------------------------------------------------------------------------- /poincare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/README.md -------------------------------------------------------------------------------- /poincare/cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/cli/Makefile -------------------------------------------------------------------------------- /poincare/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/cli/README.md -------------------------------------------------------------------------------- /poincare/cli/bisect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/cli/bisect.sh -------------------------------------------------------------------------------- /poincare/cli/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/cli/commands.cpp -------------------------------------------------------------------------------- /poincare/cli/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/cli/commands.h -------------------------------------------------------------------------------- /poincare/cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/cli/main.cpp -------------------------------------------------------------------------------- /poincare/cli/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/cli/timing.cpp -------------------------------------------------------------------------------- /poincare/config.epsilon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/config.epsilon.h -------------------------------------------------------------------------------- /poincare/doc/external.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/doc/external.md -------------------------------------------------------------------------------- /poincare/doc/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/doc/layout.md -------------------------------------------------------------------------------- /poincare/doc/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/doc/tree.md -------------------------------------------------------------------------------- /poincare/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/module.mak -------------------------------------------------------------------------------- /poincare/src/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/src/context.cpp -------------------------------------------------------------------------------- /poincare/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/src/init.cpp -------------------------------------------------------------------------------- /poincare/src/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/src/pool.cpp -------------------------------------------------------------------------------- /poincare/src/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/src/print.cpp -------------------------------------------------------------------------------- /poincare/src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/src/random.cpp -------------------------------------------------------------------------------- /poincare/src/range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/src/range.cpp -------------------------------------------------------------------------------- /poincare/src/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/src/sign.cpp -------------------------------------------------------------------------------- /poincare/test/bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/bounds.cpp -------------------------------------------------------------------------------- /poincare/test/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/compare.py -------------------------------------------------------------------------------- /poincare/test/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/helper.cpp -------------------------------------------------------------------------------- /poincare/test/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/helper.h -------------------------------------------------------------------------------- /poincare/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/main.cpp -------------------------------------------------------------------------------- /poincare/test/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/match.cpp -------------------------------------------------------------------------------- /poincare/test/n_ary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/n_ary.cpp -------------------------------------------------------------------------------- /poincare/test/order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/order.cpp -------------------------------------------------------------------------------- /poincare/test/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/parse.cpp -------------------------------------------------------------------------------- /poincare/test/roots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/roots.cpp -------------------------------------------------------------------------------- /poincare/test/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/set.cpp -------------------------------------------------------------------------------- /poincare/test/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/poincare/test/sign.cpp -------------------------------------------------------------------------------- /python/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/module.mak -------------------------------------------------------------------------------- /python/port/builtins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/builtins.c -------------------------------------------------------------------------------- /python/port/genhdr/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: false 4 | ... 5 | -------------------------------------------------------------------------------- /python/port/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/helpers.cpp -------------------------------------------------------------------------------- /python/port/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/helpers.h -------------------------------------------------------------------------------- /python/port/mod/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: false 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /python/port/mod/include/fft/fft.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/include/io/io.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/include/linalg/linalg.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/include/numpy/carray/carray.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/include/scipy/scipy.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/include/scipy/signal/signal.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/include/user/user.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/include/utils/utils.h: -------------------------------------------------------------------------------- 1 | // Ulab requires this file to be present 2 | -------------------------------------------------------------------------------- /python/port/mod/ulab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/mod/ulab.c -------------------------------------------------------------------------------- /python/port/mod/ulab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/mod/ulab.h -------------------------------------------------------------------------------- /python/port/mphalport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/mphalport.c -------------------------------------------------------------------------------- /python/port/mphalport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/mphalport.h -------------------------------------------------------------------------------- /python/port/port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/port.cpp -------------------------------------------------------------------------------- /python/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/port.h -------------------------------------------------------------------------------- /python/port/stackctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/port/stackctrl.c -------------------------------------------------------------------------------- /python/src/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: false 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /python/src/py/asmarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmarm.c -------------------------------------------------------------------------------- /python/src/py/asmarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmarm.h -------------------------------------------------------------------------------- /python/src/py/asmbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmbase.c -------------------------------------------------------------------------------- /python/src/py/asmbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmbase.h -------------------------------------------------------------------------------- /python/src/py/asmx64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmx64.c -------------------------------------------------------------------------------- /python/src/py/asmx64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmx64.h -------------------------------------------------------------------------------- /python/src/py/asmx86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmx86.c -------------------------------------------------------------------------------- /python/src/py/asmx86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/asmx86.h -------------------------------------------------------------------------------- /python/src/py/bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/bc.c -------------------------------------------------------------------------------- /python/src/py/bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/bc.h -------------------------------------------------------------------------------- /python/src/py/bc0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/bc0.h -------------------------------------------------------------------------------- /python/src/py/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/binary.c -------------------------------------------------------------------------------- /python/src/py/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/binary.h -------------------------------------------------------------------------------- /python/src/py/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/builtin.h -------------------------------------------------------------------------------- /python/src/py/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/compile.c -------------------------------------------------------------------------------- /python/src/py/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/compile.h -------------------------------------------------------------------------------- /python/src/py/emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/emit.h -------------------------------------------------------------------------------- /python/src/py/emitbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/emitbc.c -------------------------------------------------------------------------------- /python/src/py/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/gc.c -------------------------------------------------------------------------------- /python/src/py/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/gc.h -------------------------------------------------------------------------------- /python/src/py/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/grammar.h -------------------------------------------------------------------------------- /python/src/py/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/lexer.c -------------------------------------------------------------------------------- /python/src/py/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/lexer.h -------------------------------------------------------------------------------- /python/src/py/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/malloc.c -------------------------------------------------------------------------------- /python/src/py/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/map.c -------------------------------------------------------------------------------- /python/src/py/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/misc.h -------------------------------------------------------------------------------- /python/src/py/modgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/modgc.c -------------------------------------------------------------------------------- /python/src/py/modio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/modio.c -------------------------------------------------------------------------------- /python/src/py/modmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/modmath.c -------------------------------------------------------------------------------- /python/src/py/modsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/modsys.c -------------------------------------------------------------------------------- /python/src/py/mperrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mperrno.h -------------------------------------------------------------------------------- /python/src/py/mphal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mphal.h -------------------------------------------------------------------------------- /python/src/py/mpprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mpprint.c -------------------------------------------------------------------------------- /python/src/py/mpprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mpprint.h -------------------------------------------------------------------------------- /python/src/py/mpstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mpstate.c -------------------------------------------------------------------------------- /python/src/py/mpstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mpstate.h -------------------------------------------------------------------------------- /python/src/py/mpz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mpz.c -------------------------------------------------------------------------------- /python/src/py/mpz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/mpz.h -------------------------------------------------------------------------------- /python/src/py/nlr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/nlr.c -------------------------------------------------------------------------------- /python/src/py/nlr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/nlr.h -------------------------------------------------------------------------------- /python/src/py/nlrx64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/nlrx64.c -------------------------------------------------------------------------------- /python/src/py/nlrx86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/nlrx86.c -------------------------------------------------------------------------------- /python/src/py/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/obj.c -------------------------------------------------------------------------------- /python/src/py/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/obj.h -------------------------------------------------------------------------------- /python/src/py/objbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objbool.c -------------------------------------------------------------------------------- /python/src/py/objcell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objcell.c -------------------------------------------------------------------------------- /python/src/py/objdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objdict.c -------------------------------------------------------------------------------- /python/src/py/objfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objfun.c -------------------------------------------------------------------------------- /python/src/py/objfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objfun.h -------------------------------------------------------------------------------- /python/src/py/objint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objint.c -------------------------------------------------------------------------------- /python/src/py/objint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objint.h -------------------------------------------------------------------------------- /python/src/py/objlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objlist.c -------------------------------------------------------------------------------- /python/src/py/objlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objlist.h -------------------------------------------------------------------------------- /python/src/py/objmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objmap.c -------------------------------------------------------------------------------- /python/src/py/objnone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objnone.c -------------------------------------------------------------------------------- /python/src/py/objset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objset.c -------------------------------------------------------------------------------- /python/src/py/objstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objstr.c -------------------------------------------------------------------------------- /python/src/py/objstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objstr.h -------------------------------------------------------------------------------- /python/src/py/objtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objtype.c -------------------------------------------------------------------------------- /python/src/py/objtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objtype.h -------------------------------------------------------------------------------- /python/src/py/objzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/objzip.c -------------------------------------------------------------------------------- /python/src/py/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/parse.c -------------------------------------------------------------------------------- /python/src/py/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/parse.h -------------------------------------------------------------------------------- /python/src/py/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/profile.c -------------------------------------------------------------------------------- /python/src/py/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/profile.h -------------------------------------------------------------------------------- /python/src/py/pystack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/pystack.c -------------------------------------------------------------------------------- /python/src/py/pystack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/pystack.h -------------------------------------------------------------------------------- /python/src/py/qstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/qstr.c -------------------------------------------------------------------------------- /python/src/py/qstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/qstr.h -------------------------------------------------------------------------------- /python/src/py/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/reader.c -------------------------------------------------------------------------------- /python/src/py/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/reader.h -------------------------------------------------------------------------------- /python/src/py/repl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/repl.c -------------------------------------------------------------------------------- /python/src/py/repl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/repl.h -------------------------------------------------------------------------------- /python/src/py/ringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/ringbuf.c -------------------------------------------------------------------------------- /python/src/py/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/ringbuf.h -------------------------------------------------------------------------------- /python/src/py/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/runtime.c -------------------------------------------------------------------------------- /python/src/py/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/runtime.h -------------------------------------------------------------------------------- /python/src/py/scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/scope.c -------------------------------------------------------------------------------- /python/src/py/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/scope.h -------------------------------------------------------------------------------- /python/src/py/showbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/showbc.c -------------------------------------------------------------------------------- /python/src/py/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/stream.c -------------------------------------------------------------------------------- /python/src/py/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/stream.h -------------------------------------------------------------------------------- /python/src/py/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/unicode.c -------------------------------------------------------------------------------- /python/src/py/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/unicode.h -------------------------------------------------------------------------------- /python/src/py/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/vm.c -------------------------------------------------------------------------------- /python/src/py/vstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/vstr.c -------------------------------------------------------------------------------- /python/src/py/warning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/src/py/warning.c -------------------------------------------------------------------------------- /python/test/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/test/basics.cpp -------------------------------------------------------------------------------- /python/test/ion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/test/ion.cpp -------------------------------------------------------------------------------- /python/test/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/test/math.cpp -------------------------------------------------------------------------------- /python/test/numpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/test/numpy.cpp -------------------------------------------------------------------------------- /python/test/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/test/random.cpp -------------------------------------------------------------------------------- /python/test/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/test/time.cpp -------------------------------------------------------------------------------- /python/test/turtle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/test/turtle.cpp -------------------------------------------------------------------------------- /python/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/python/upgrade.md -------------------------------------------------------------------------------- /quiz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/README.md -------------------------------------------------------------------------------- /quiz/gdb_script.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/gdb_script.gdb -------------------------------------------------------------------------------- /quiz/include/quiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/include/quiz.h -------------------------------------------------------------------------------- /quiz/module.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/module.mak -------------------------------------------------------------------------------- /quiz/src/assertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/src/assertions.cpp -------------------------------------------------------------------------------- /quiz/src/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/src/i18n.cpp -------------------------------------------------------------------------------- /quiz/src/runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/src/runner.cpp -------------------------------------------------------------------------------- /quiz/src/stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/src/stopwatch.cpp -------------------------------------------------------------------------------- /quiz/src/symbols.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/src/symbols.awk -------------------------------------------------------------------------------- /quiz/src/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/quiz/src/symbols.h -------------------------------------------------------------------------------- /tests/dfu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numworks/epsilon/HEAD/tests/dfu_test.py -------------------------------------------------------------------------------- /tests/fuzzer_seeds/distributions_chi-square.nws: -------------------------------------------------------------------------------- 1 | 4 + 44 0$ 4 -------------------------------------------------------------------------------- /tests/fuzzer_seeds/finance_compound_interest.nws: -------------------------------------------------------------------------------- 1 | 4. $$$ 4 ,1 4444 -------------------------------------------------------------------------------- /tests/fuzzer_seeds/grapher_autozoom_1.nws: -------------------------------------------------------------------------------- 1 | c61abc -------------------------------------------------------------------------------- /tests/fuzzer_seeds/input_beautification4.nws: -------------------------------------------------------------------------------- 1 | 4 $ S Q % . S ~4 -------------------------------------------------------------------------------- /tests/fuzzer_seeds/store_menu_linear_edition.nws: -------------------------------------------------------------------------------- 1 | *+,($%& 666  ~ -------------------------------------------------------------------------------- /tests/fuzzer_seeds/toolbox.nws: -------------------------------------------------------------------------------- 1 | 3`f&&F f -------------------------------------------------------------------------------- /tests/screenshots_dataset/alternate_empty_union_tabs/crc32.txt: -------------------------------------------------------------------------------- 1 | 2D65DC18 -------------------------------------------------------------------------------- /tests/screenshots_dataset/beautification_double_quotes/crc32.txt: -------------------------------------------------------------------------------- 1 | 902DE8D1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_complex/crc32.txt: -------------------------------------------------------------------------------- 1 | F5BAC4DC -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_complex_no_illustration/crc32.txt: -------------------------------------------------------------------------------- 1 | EDF0A3D4 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_complex_trigo/crc32.txt: -------------------------------------------------------------------------------- 1 | 1C2C9F12 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_direct_trigo/crc32.txt: -------------------------------------------------------------------------------- 1 | 39F7FA34 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_direct_trigo_degree/crc32.txt: -------------------------------------------------------------------------------- 1 | 85AA3491 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_function/crc32.txt: -------------------------------------------------------------------------------- 1 | AB62475A -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_function_and_integer/crc32.txt: -------------------------------------------------------------------------------- 1 | 0524F0AB -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_function_parametric/crc32.txt: -------------------------------------------------------------------------------- 1 | D15ABE33 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_hidden_exact/crc32.txt: -------------------------------------------------------------------------------- 1 | DFBA6596 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_matrix_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 43166620 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_matrix_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 4B067491 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_matrix_3/crc32.txt: -------------------------------------------------------------------------------- 1 | 0D5A9FCD -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_matrix_4/crc32.txt: -------------------------------------------------------------------------------- 1 | D542827C -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_matrix_inf/crc32.txt: -------------------------------------------------------------------------------- 1 | B15235A5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_real_polar/crc32.txt: -------------------------------------------------------------------------------- 1 | 657F318A -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_scientific_and_integer/crc32.txt: -------------------------------------------------------------------------------- 1 | 7B328D4B -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_scientific_and_rational/crc32.txt: -------------------------------------------------------------------------------- 1 | A321136D -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_units/crc32.txt: -------------------------------------------------------------------------------- 1 | AF76B180 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_units_angle/crc32.txt: -------------------------------------------------------------------------------- 1 | 2814A2DC -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_units_order/crc32.txt: -------------------------------------------------------------------------------- 1 | DAA8EE76 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_vector_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 4CFD4783 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_vector_3/crc32.txt: -------------------------------------------------------------------------------- 1 | 48F88FDF -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_vector_4/crc32.txt: -------------------------------------------------------------------------------- 1 | A028EFAD -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_additional_results_vector_empty/crc32.txt: -------------------------------------------------------------------------------- 1 | 9293D4D7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_ans_crash_7163/crc32.txt: -------------------------------------------------------------------------------- 1 | CDD60F2E -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_auto_parenthesis_power/crc32.txt: -------------------------------------------------------------------------------- 1 | CD9470AD -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_brackets_balance_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 8B3DCB43 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_brackets_balance_2/crc32.txt: -------------------------------------------------------------------------------- 1 | F15438FB -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_brackets_balance_3/crc32.txt: -------------------------------------------------------------------------------- 1 | 9B379F5C -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_context_dependant_parse_failure/crc32.txt: -------------------------------------------------------------------------------- 1 | 46455F16 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_cursor_collapse/crc32.txt: -------------------------------------------------------------------------------- 1 | 511960F1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_cursor_insertion_matrix/crc32.txt: -------------------------------------------------------------------------------- 1 | D89049D9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_derivative_layout/crc32.txt: -------------------------------------------------------------------------------- 1 | 94F2B000 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_derivative_random/crc32.txt: -------------------------------------------------------------------------------- 1 | A4842FF4 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_display_mode/crc32.txt: -------------------------------------------------------------------------------- 1 | B81E648B -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_division_serialisation/crc32.txt: -------------------------------------------------------------------------------- 1 | 051C9896 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_dutch_logarithm/crc32.txt: -------------------------------------------------------------------------------- 1 | EB5E7046 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_empty_collapse/crc32.txt: -------------------------------------------------------------------------------- 1 | BE9D4736 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_equal_sign/crc32.txt: -------------------------------------------------------------------------------- 1 | 5C76D204 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_fraction_cursor_insertion_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 8A6D92B2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_fraction_cursor_insertion_2/crc32.txt: -------------------------------------------------------------------------------- 1 | FFC1809B -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_history_cell_max_height/crc32.txt: -------------------------------------------------------------------------------- 1 | B913D3CA -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_history_cell_size_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 2C404C47 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_history_cell_size_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 372EEAA7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_identity100/crc32.txt: -------------------------------------------------------------------------------- 1 | D5B12AD9 2 | A6B1EC8A 3 | -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_implicit_angle_conversion/crc32.txt: -------------------------------------------------------------------------------- 1 | F718EA7F -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_infinity/crc32.txt: -------------------------------------------------------------------------------- 1 | 47380DB4 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_input_beautification_1/crc32.txt: -------------------------------------------------------------------------------- 1 | C28305BE -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_input_beautification_2/crc32.txt: -------------------------------------------------------------------------------- 1 | C97C0616 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_input_beautification_3/crc32.txt: -------------------------------------------------------------------------------- 1 | 38A18B5C -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_input_beautification_4/crc32.txt: -------------------------------------------------------------------------------- 1 | 1B20A3EA -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_input_beautification_5/crc32.txt: -------------------------------------------------------------------------------- 1 | 055E0036 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_input_beautification_log/crc32.txt: -------------------------------------------------------------------------------- 1 | 641A2D81 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_insertion_cursor_after_beautification/crc32.txt: -------------------------------------------------------------------------------- 1 | EC6DF763 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_large_numbers/crc32.txt: -------------------------------------------------------------------------------- 1 | 44DCC5EB -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_layout_cursor_collapse/crc32.txt: -------------------------------------------------------------------------------- 1 | 3C278A03 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_layout_derivative_in_matrix/crc32.txt: -------------------------------------------------------------------------------- 1 | D8906677 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_layout_nested_integrals/crc32.txt: -------------------------------------------------------------------------------- 1 | 929AED35 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_layout_selection/crc32.txt: -------------------------------------------------------------------------------- 1 | 8816183D -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_list_element/crc32.txt: -------------------------------------------------------------------------------- 1 | 9FB907DB -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_logical_operators/crc32.txt: -------------------------------------------------------------------------------- 1 | C5FC7945 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_margins_arrow/crc32.txt: -------------------------------------------------------------------------------- 1 | 3114EB08 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_matrices/crc32.txt: -------------------------------------------------------------------------------- 1 | EC5DD2E3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_matrix_shrink/crc32.txt: -------------------------------------------------------------------------------- 1 | F7CF4590 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_mixed_fractions/crc32.txt: -------------------------------------------------------------------------------- 1 | 0FB9D562 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_notequal_sign/crc32.txt: -------------------------------------------------------------------------------- 1 | 0A85605B -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_nth_derivative/crc32.txt: -------------------------------------------------------------------------------- 1 | 374D45C8 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_parse_fail/crc32.txt: -------------------------------------------------------------------------------- 1 | 0E99D661 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_percent/crc32.txt: -------------------------------------------------------------------------------- 1 | 7CBB7AE1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_piecewise_operator/crc32.txt: -------------------------------------------------------------------------------- 1 | BE6A95BD -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_polar/crc32.txt: -------------------------------------------------------------------------------- 1 | F4649B60 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_pt_combinatorics/crc32.txt: -------------------------------------------------------------------------------- 1 | 32A11056 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_simple/crc32.txt: -------------------------------------------------------------------------------- 1 | 55AABA48 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_store_operation/crc32.txt: -------------------------------------------------------------------------------- 1 | 0D572F46 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_store_sequence_context/crc32.txt: -------------------------------------------------------------------------------- 1 | 120F174E -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_unit_conversion_with_ans/crc32.txt: -------------------------------------------------------------------------------- 1 | C3169701 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_unit_function_assignement/crc32.txt: -------------------------------------------------------------------------------- 1 | FBA2FB9A -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_varbox_can_handle_lists/crc32.txt: -------------------------------------------------------------------------------- 1 | 9FA0FD35 -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_working_buffer/crc32.txt: -------------------------------------------------------------------------------- 1 | B403025D -------------------------------------------------------------------------------- /tests/screenshots_dataset/calculation_xnt_linear_edition/crc32.txt: -------------------------------------------------------------------------------- 1 | 853A031E -------------------------------------------------------------------------------- /tests/screenshots_dataset/clipboard_calc_distrib/crc32.txt: -------------------------------------------------------------------------------- 1 | 17505473 -------------------------------------------------------------------------------- /tests/screenshots_dataset/crc32.txt: -------------------------------------------------------------------------------- 1 | 7983E622 -------------------------------------------------------------------------------- /tests/screenshots_dataset/degree_mode/crc32.txt: -------------------------------------------------------------------------------- 1 | 3379F9CA -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_binomial/crc32.txt: -------------------------------------------------------------------------------- 1 | C2F09FCC -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_calculation_cells/crc32.txt: -------------------------------------------------------------------------------- 1 | DCE9720E -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_chi_square/crc32.txt: -------------------------------------------------------------------------------- 1 | 8AFF53D8 -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_exponential/crc32.txt: -------------------------------------------------------------------------------- 1 | 8FEFEB29 -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_fisher/crc32.txt: -------------------------------------------------------------------------------- 1 | 967DA4E2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_geometric/crc32.txt: -------------------------------------------------------------------------------- 1 | 3C2AAFED -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_hypergeometric_overflow/crc32.txt: -------------------------------------------------------------------------------- 1 | 08EA248B -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_max_title_size/crc32.txt: -------------------------------------------------------------------------------- 1 | 9C4A8C4E -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_normal/crc32.txt: -------------------------------------------------------------------------------- 1 | 3010A3D5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_normal_reverse/crc32.txt: -------------------------------------------------------------------------------- 1 | 6B2294E2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_poisson/crc32.txt: -------------------------------------------------------------------------------- 1 | CF9441AD -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_round_discrete_bounds/crc32.txt: -------------------------------------------------------------------------------- 1 | 7D856F0D -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_student/crc32.txt: -------------------------------------------------------------------------------- 1 | E779BF00 -------------------------------------------------------------------------------- /tests/screenshots_dataset/distributions_uniform/crc32.txt: -------------------------------------------------------------------------------- 1 | B31323FE -------------------------------------------------------------------------------- /tests/screenshots_dataset/dropdown_abort/crc32.txt: -------------------------------------------------------------------------------- 1 | D5CB13BA -------------------------------------------------------------------------------- /tests/screenshots_dataset/dropdown_open/crc32.txt: -------------------------------------------------------------------------------- 1 | 878A0CDA -------------------------------------------------------------------------------- /tests/screenshots_dataset/elements_details_list_navigation/crc32.txt: -------------------------------------------------------------------------------- 1 | 7CEF7361 -------------------------------------------------------------------------------- /tests/screenshots_dataset/elements_main_view_display_type/crc32.txt: -------------------------------------------------------------------------------- 1 | 30007943 -------------------------------------------------------------------------------- /tests/screenshots_dataset/elements_main_view_navigation/crc32.txt: -------------------------------------------------------------------------------- 1 | D45F9F79 -------------------------------------------------------------------------------- /tests/screenshots_dataset/elements_main_view_store_and_copy/crc32.txt: -------------------------------------------------------------------------------- 1 | 5312274C -------------------------------------------------------------------------------- /tests/screenshots_dataset/elements_search/crc32.txt: -------------------------------------------------------------------------------- 1 | F4096049 -------------------------------------------------------------------------------- /tests/screenshots_dataset/escher_coordinate_overflow_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 712A0DAE -------------------------------------------------------------------------------- /tests/screenshots_dataset/event_external_text/crc32.txt: -------------------------------------------------------------------------------- 1 | C81DE6D1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_exit/crc32.txt: -------------------------------------------------------------------------------- 1 | 9C50D9D5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_fr/crc32.txt: -------------------------------------------------------------------------------- 1 | 14BFB427 -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_nl/crc32.txt: -------------------------------------------------------------------------------- 1 | 3C89DAC9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_pt/crc32.txt: -------------------------------------------------------------------------------- 1 | 56A4B723 -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_reactivation/crc32.txt: -------------------------------------------------------------------------------- 1 | A6582E49 -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_sat/crc32.txt: -------------------------------------------------------------------------------- 1 | CDCD93FE -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_staar/crc32.txt: -------------------------------------------------------------------------------- 1 | 8C377FDD -------------------------------------------------------------------------------- /tests/screenshots_dataset/exam_mode_uk/crc32.txt: -------------------------------------------------------------------------------- 1 | A716C6D7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/finance_compound_interest/crc32.txt: -------------------------------------------------------------------------------- 1 | 786945AD -------------------------------------------------------------------------------- /tests/screenshots_dataset/finance_simple_interest/crc32.txt: -------------------------------------------------------------------------------- 1 | 166FBF1F -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_absolute_value_derivative/crc32.txt: -------------------------------------------------------------------------------- 1 | 514928C1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_absolute_value_interest/crc32.txt: -------------------------------------------------------------------------------- 1 | 2CC38F5D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_absolute_value_interest_complex_mode/crc32.txt: -------------------------------------------------------------------------------- 1 | 6B5AD710 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_absolute_value_nested/crc32.txt: -------------------------------------------------------------------------------- 1 | 31ACCFEF -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_area_between_undef/crc32.txt: -------------------------------------------------------------------------------- 1 | 6EF52900 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_auto_cursor_cartesian/crc32.txt: -------------------------------------------------------------------------------- 1 | E27F4E0C -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_auto_cursor_inverse_function/crc32.txt: -------------------------------------------------------------------------------- 1 | D5F23255 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_auto_cursor_parametric/crc32.txt: -------------------------------------------------------------------------------- 1 | 91BA7A8B -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_auto_cursor_polar/crc32.txt: -------------------------------------------------------------------------------- 1 | A6D09B06 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_auto_cursor_when_forcing_x/crc32.txt: -------------------------------------------------------------------------------- 1 | BD8A4FD3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_auto_parameter_grid_unit/crc32.txt: -------------------------------------------------------------------------------- 1 | F8B18E6C -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 4B7EB0B8 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_10/crc32.txt: -------------------------------------------------------------------------------- 1 | 850D4FF3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_11/crc32.txt: -------------------------------------------------------------------------------- 1 | E6070680 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_12/crc32.txt: -------------------------------------------------------------------------------- 1 | 31BA9A75 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_13/crc32.txt: -------------------------------------------------------------------------------- 1 | 7F44657A -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_14/crc32.txt: -------------------------------------------------------------------------------- 1 | 7B0D5D46 2 | BB64539A 3 | -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_15/crc32.txt: -------------------------------------------------------------------------------- 1 | 14D54598 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_16/crc32.txt: -------------------------------------------------------------------------------- 1 | A6FD1A4F -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 504538CC -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_3/crc32.txt: -------------------------------------------------------------------------------- 1 | C3ADB782 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_4/crc32.txt: -------------------------------------------------------------------------------- 1 | 23D01028 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_5/crc32.txt: -------------------------------------------------------------------------------- 1 | AB3C26AF -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_6/crc32.txt: -------------------------------------------------------------------------------- 1 | E93D54E2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_7/crc32.txt: -------------------------------------------------------------------------------- 1 | 296BF708 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_8/crc32.txt: -------------------------------------------------------------------------------- 1 | DFFC9110 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_9/crc32.txt: -------------------------------------------------------------------------------- 1 | AA945458 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_forced_x_range/crc32.txt: -------------------------------------------------------------------------------- 1 | AF263762 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_large_intersection/crc32.txt: -------------------------------------------------------------------------------- 1 | EDBF962C -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_piecewise_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 982FF14F -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_piecewise_2/crc32.txt: -------------------------------------------------------------------------------- 1 | B3CBBC69 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_autozoom_trig_intersections/crc32.txt: -------------------------------------------------------------------------------- 1 | 18BFB6DC -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_backwards_integral/crc32.txt: -------------------------------------------------------------------------------- 1 | 7BA040A4 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_calculate_menu/crc32.txt: -------------------------------------------------------------------------------- 1 | C3609558 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_change_color/crc32.txt: -------------------------------------------------------------------------------- 1 | 4FE5814F -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_condensed_derivatives/crc32.txt: -------------------------------------------------------------------------------- 1 | 072FD6B9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_conic_inequality/crc32.txt: -------------------------------------------------------------------------------- 1 | 902197D0 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_cursor_banner_overlap/crc32.txt: -------------------------------------------------------------------------------- 1 | F68C7DCC -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_cursor_behind_banner/crc32.txt: -------------------------------------------------------------------------------- 1 | DA3A7CB2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_cursor_memoization/crc32.txt: -------------------------------------------------------------------------------- 1 | BC547A59 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_curve_parameters_cartesian/crc32.txt: -------------------------------------------------------------------------------- 1 | 5D0E3E31 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_curve_parameters_parametric/crc32.txt: -------------------------------------------------------------------------------- 1 | 8875F24D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_curve_parameters_polar/crc32.txt: -------------------------------------------------------------------------------- 1 | 197DCCFD -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_deletion_from_tab_graph/crc32.txt: -------------------------------------------------------------------------------- 1 | FCC66AD5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_derivative_curve_exit_responder_chain/crc32.txt: -------------------------------------------------------------------------------- 1 | CA48EBE1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_derivative_curve_goto/crc32.txt: -------------------------------------------------------------------------------- 1 | D2C346E8 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_derivative_curve_vertical_move/crc32.txt: -------------------------------------------------------------------------------- 1 | 1E099329 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_derivatives_color/crc32.txt: -------------------------------------------------------------------------------- 1 | 3A9E3845 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_discontinuity_interest_points_2/crc32.txt: -------------------------------------------------------------------------------- 1 | C329B49F -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_discontinuity_interest_points_3/crc32.txt: -------------------------------------------------------------------------------- 1 | 457A430C -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_discontinuity_interest_points_4/crc32.txt: -------------------------------------------------------------------------------- 1 | FAE16722 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_discontinuity_on_root/crc32.txt: -------------------------------------------------------------------------------- 1 | DD2E609A -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_display_derivative_banner/crc32.txt: -------------------------------------------------------------------------------- 1 | B2B18485 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_edition/crc32.txt: -------------------------------------------------------------------------------- 1 | 2C319E6D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_empty_scatter_plot/crc32.txt: -------------------------------------------------------------------------------- 1 | 51322C1C -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_exact_expression_trigonometric/crc32.txt: -------------------------------------------------------------------------------- 1 | 51CA56BF -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_exact_label/crc32.txt: -------------------------------------------------------------------------------- 1 | 96C9FC48 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_exact_results_symbolic_undefined/crc32.txt: -------------------------------------------------------------------------------- 1 | 4751C787 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_false_complex_function/crc32.txt: -------------------------------------------------------------------------------- 1 | A8A46EE9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_false_maximum/crc32.txt: -------------------------------------------------------------------------------- 1 | 6C4E0AD3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_false_root/crc32.txt: -------------------------------------------------------------------------------- 1 | E5E55AA2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_find_edge/crc32.txt: -------------------------------------------------------------------------------- 1 | D7FBCC49 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_find_zeroes/crc32.txt: -------------------------------------------------------------------------------- 1 | 28D7EDFE -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_find_zeroes_absolute_of_polynom/crc32.txt: -------------------------------------------------------------------------------- 1 | BEF759F9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_flat_conics/crc32.txt: -------------------------------------------------------------------------------- 1 | 2A9F9803 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_graph_area_cell/crc32.txt: -------------------------------------------------------------------------------- 1 | 31112167 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_graph_display_mode/crc32.txt: -------------------------------------------------------------------------------- 1 | FE8A452A -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_graph_variable_box/crc32.txt: -------------------------------------------------------------------------------- 1 | 2A13687A -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_implicit_reduction_target/crc32.txt: -------------------------------------------------------------------------------- 1 | 95AB9291 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_input_beautification/crc32.txt: -------------------------------------------------------------------------------- 1 | 4BCBD730 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_integral_between_curves/crc32.txt: -------------------------------------------------------------------------------- 1 | A8DB439D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_integral_of_integral/crc32.txt: -------------------------------------------------------------------------------- 1 | 66FFE083 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_integral_with_derivative/crc32.txt: -------------------------------------------------------------------------------- 1 | ECF1951B -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_interest_inequation/crc32.txt: -------------------------------------------------------------------------------- 1 | 7743877D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_interest_intersection_with_disabled_function/crc32.txt: -------------------------------------------------------------------------------- 1 | 50299F61 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_interest_intersections/crc32.txt: -------------------------------------------------------------------------------- 1 | 47514E36 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_interest_intersections_on_discontinuities/crc32.txt: -------------------------------------------------------------------------------- 1 | DA803CAB -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_inverse_polar/crc32.txt: -------------------------------------------------------------------------------- 1 | F6A0B524 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_invert_function_interest/crc32.txt: -------------------------------------------------------------------------------- 1 | 22BBF75E -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_invert_function_names/crc32.txt: -------------------------------------------------------------------------------- 1 | F1C29D37 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_labels_no_overlap/crc32.txt: -------------------------------------------------------------------------------- 1 | 1C0AB95F -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_list_invalid_syntax/crc32.txt: -------------------------------------------------------------------------------- 1 | 91158F69 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_long_functions_name/crc32.txt: -------------------------------------------------------------------------------- 1 | 3096B518 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_max_pan/crc32.txt: -------------------------------------------------------------------------------- 1 | BB27FB84 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_maximum_with_function_very_flat_close_to_zero/crc32.txt: -------------------------------------------------------------------------------- 1 | 133E6A6A -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_navigate_pan_zoom/crc32.txt: -------------------------------------------------------------------------------- 1 | E38D0C09 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_no_data/crc32.txt: -------------------------------------------------------------------------------- 1 | E46E3384 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_no_fake_interest/crc32.txt: -------------------------------------------------------------------------------- 1 | E6FF2EE3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_normalisation_with_user_grid_unit/crc32.txt: -------------------------------------------------------------------------------- 1 | DBCB9196 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_open_modal_on_template_button/crc32.txt: -------------------------------------------------------------------------------- 1 | 22765978 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_parametric_components/crc32.txt: -------------------------------------------------------------------------------- 1 | A140B51E -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_piecewise_function/crc32.txt: -------------------------------------------------------------------------------- 1 | F5AEC6AE -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_piecewise_no_minimum/crc32.txt: -------------------------------------------------------------------------------- 1 | E8574E37 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_piecewise_no_root/crc32.txt: -------------------------------------------------------------------------------- 1 | 812F1954 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_plot_derivative/crc32.txt: -------------------------------------------------------------------------------- 1 | ABE9A291 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_plot_parametered_expression/crc32.txt: -------------------------------------------------------------------------------- 1 | EB09A1EC -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_plot_rational_power/crc32.txt: -------------------------------------------------------------------------------- 1 | ABFDE668 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_plot_restriction_empty_field/crc32.txt: -------------------------------------------------------------------------------- 1 | 9E5D856C -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_plot_sqrt_dep/crc32.txt: -------------------------------------------------------------------------------- 1 | E91B3422 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_plot_undef_point/crc32.txt: -------------------------------------------------------------------------------- 1 | 74C4EACE -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_polar_derivative/crc32.txt: -------------------------------------------------------------------------------- 1 | 94F9D2B0 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_polar_grid/crc32.txt: -------------------------------------------------------------------------------- 1 | 15AAB786 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_polar_in_varbox/crc32.txt: -------------------------------------------------------------------------------- 1 | C09EAC75 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_pop_menu_if_function_inactive/crc32.txt: -------------------------------------------------------------------------------- 1 | 3407C8E1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_regression_scatter_plot/crc32.txt: -------------------------------------------------------------------------------- 1 | E7EA5411 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_reload_after_store/crc32.txt: -------------------------------------------------------------------------------- 1 | 084CB51D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_scatter_plot/crc32.txt: -------------------------------------------------------------------------------- 1 | 8CA19A31 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_scatter_plot_with_undef/crc32.txt: -------------------------------------------------------------------------------- 1 | FE69781D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_set_domain/crc32.txt: -------------------------------------------------------------------------------- 1 | 7C4CC806 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_single_point/crc32.txt: -------------------------------------------------------------------------------- 1 | 9295EE06 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_tangent_of_exp/crc32.txt: -------------------------------------------------------------------------------- 1 | 4836CC34 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_tangent_polar_parametric/crc32.txt: -------------------------------------------------------------------------------- 1 | 8D3FB612 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_undefined_y_value/crc32.txt: -------------------------------------------------------------------------------- 1 | 582755F1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_update_function_out_of_grapher/crc32.txt: -------------------------------------------------------------------------------- 1 | D6B9B345 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_update_with_derivatives/crc32.txt: -------------------------------------------------------------------------------- 1 | B42D1F92 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_user_grid_unit/crc32.txt: -------------------------------------------------------------------------------- 1 | 2D5AA3D3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values/crc32.txt: -------------------------------------------------------------------------------- 1 | ADC95616 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_abscissa_column_options/crc32.txt: -------------------------------------------------------------------------------- 1 | 85614524 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_button_row/crc32.txt: -------------------------------------------------------------------------------- 1 | 16ACC281 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_cell_size/crc32.txt: -------------------------------------------------------------------------------- 1 | DCBAF301 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_delete_function/crc32.txt: -------------------------------------------------------------------------------- 1 | 4A084F90 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_deletion_lines/crc32.txt: -------------------------------------------------------------------------------- 1 | 73E84FB1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_derivative/crc32.txt: -------------------------------------------------------------------------------- 1 | 6399BA95 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_derivative_column_options/crc32.txt: -------------------------------------------------------------------------------- 1 | 81EEE573 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_function_column_options/crc32.txt: -------------------------------------------------------------------------------- 1 | D8E7A6EA -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_header/crc32.txt: -------------------------------------------------------------------------------- 1 | F3A02EF6 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_intersection_preface/crc32.txt: -------------------------------------------------------------------------------- 1 | 265B25D2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_max_digits/crc32.txt: -------------------------------------------------------------------------------- 1 | 8C46712D -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_navigation/crc32.txt: -------------------------------------------------------------------------------- 1 | 8B3E917F -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_preface_column_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 4FB46664 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_preface_column_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 5547A324 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_preface_column_margin/crc32.txt: -------------------------------------------------------------------------------- 1 | 321B0CA7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_reduction_fail/crc32.txt: -------------------------------------------------------------------------------- 1 | 1CF0983B -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_row_preface_height/crc32.txt: -------------------------------------------------------------------------------- 1 | 0DA7553A -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_values_width_memoization/crc32.txt: -------------------------------------------------------------------------------- 1 | F240DC55 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_y_dependencies/crc32.txt: -------------------------------------------------------------------------------- 1 | 98522739 -------------------------------------------------------------------------------- /tests/screenshots_dataset/grapher_y_given_x/crc32.txt: -------------------------------------------------------------------------------- 1 | C0E119F2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/home_screen_bottom/crc32.txt: -------------------------------------------------------------------------------- 1 | 354BA7AB -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_can_choose_dataset/crc32.txt: -------------------------------------------------------------------------------- 1 | 416C43AA -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_categorical_table_reload_dimensions/crc32.txt: -------------------------------------------------------------------------------- 1 | A3857B42 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_categorical_table_reload_dimensions_2/crc32.txt: -------------------------------------------------------------------------------- 1 | E25F8D01 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_destroy_cells/crc32.txt: -------------------------------------------------------------------------------- 1 | E0DD4968 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_destroy_cells_2/crc32.txt: -------------------------------------------------------------------------------- 1 | D4814278 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_goodness_delete_column/crc32.txt: -------------------------------------------------------------------------------- 1 | DEE51336 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_goodness_graph/crc32.txt: -------------------------------------------------------------------------------- 1 | 53509CC7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_goodness_invalid/crc32.txt: -------------------------------------------------------------------------------- 1 | 2DDF798F -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_goodness_results_reload/crc32.txt: -------------------------------------------------------------------------------- 1 | A5AF7017 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_goodness_table_selection_deselection/crc32.txt: -------------------------------------------------------------------------------- 1 | EE06005D -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_homogeneity_delete_column/crc32.txt: -------------------------------------------------------------------------------- 1 | 66FE40D5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_homogeneity_graph/crc32.txt: -------------------------------------------------------------------------------- 1 | 22CA91EA -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_homogeneity_results_reload/crc32.txt: -------------------------------------------------------------------------------- 1 | 7EB473D7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_chi2_homogeneity_table_selection_deselection/crc32.txt: -------------------------------------------------------------------------------- 1 | 28192CA1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_one_mean_clear_column/crc32.txt: -------------------------------------------------------------------------------- 1 | 9EDDA246 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_one_mean_input_dataset/crc32.txt: -------------------------------------------------------------------------------- 1 | 384D29C6 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_one_mean_input_statistics/crc32.txt: -------------------------------------------------------------------------------- 1 | C4173DA1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_one_mean_invalid_inputs/crc32.txt: -------------------------------------------------------------------------------- 1 | 35A8A1B0 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_one_proportion/crc32.txt: -------------------------------------------------------------------------------- 1 | AABA4068 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_proper_pattern_drawing/crc32.txt: -------------------------------------------------------------------------------- 1 | 9D970345 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope/crc32.txt: -------------------------------------------------------------------------------- 1 | 719FD1C1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_data_change/crc32.txt: -------------------------------------------------------------------------------- 1 | 25459433 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_delete_column/crc32.txt: -------------------------------------------------------------------------------- 1 | A3A6CF03 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_interval_almost_empty/crc32.txt: -------------------------------------------------------------------------------- 1 | 77825FDD -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_open_graph_with_invalid_inputs/crc32.txt: -------------------------------------------------------------------------------- 1 | 531734D1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_open_results_with_invalid_inputs/crc32.txt: -------------------------------------------------------------------------------- 1 | 8B0B6AEC -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_reentry/crc32.txt: -------------------------------------------------------------------------------- 1 | 6AD32C1D -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_reload_dimensions/crc32.txt: -------------------------------------------------------------------------------- 1 | EC074EC3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_slope_table_reload/crc32.txt: -------------------------------------------------------------------------------- 1 | CA74769A -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_test_curve_zoom/crc32.txt: -------------------------------------------------------------------------------- 1 | 3E48FE38 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_two_means_input_dataset/crc32.txt: -------------------------------------------------------------------------------- 1 | FD685764 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_two_means_input_statistics/crc32.txt: -------------------------------------------------------------------------------- 1 | 5EB6882A -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_two_means_navigate_input_pages/crc32.txt: -------------------------------------------------------------------------------- 1 | 62688443 -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_two_means_navigate_list/crc32.txt: -------------------------------------------------------------------------------- 1 | 3AD5619E -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_two_means_table_selection/crc32.txt: -------------------------------------------------------------------------------- 1 | D7FFEA5B -------------------------------------------------------------------------------- /tests/screenshots_dataset/inference_two_proportions/crc32.txt: -------------------------------------------------------------------------------- 1 | 03420068 -------------------------------------------------------------------------------- /tests/screenshots_dataset/layout_field_serialization/crc32.txt: -------------------------------------------------------------------------------- 1 | D1F589EE -------------------------------------------------------------------------------- /tests/screenshots_dataset/nl_logarithm/crc32.txt: -------------------------------------------------------------------------------- 1 | 10ADD0FF -------------------------------------------------------------------------------- /tests/screenshots_dataset/nl_logarithm_nested/crc32.txt: -------------------------------------------------------------------------------- 1 | 1C2D3C7B -------------------------------------------------------------------------------- /tests/screenshots_dataset/no_cas/crc32.txt: -------------------------------------------------------------------------------- 1 | A805FA8D -------------------------------------------------------------------------------- /tests/screenshots_dataset/parsing_edge_cases/crc32.txt: -------------------------------------------------------------------------------- 1 | 9D64E5D0 -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_button_shell/crc32.txt: -------------------------------------------------------------------------------- 1 | 914D35D2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_clipboard/crc32.txt: -------------------------------------------------------------------------------- 1 | 49373A59 -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_clipboard2/crc32.txt: -------------------------------------------------------------------------------- 1 | 597EC4FB -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_console_variablebox/crc32.txt: -------------------------------------------------------------------------------- 1 | E246C05F -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_editor_delete/crc32.txt: -------------------------------------------------------------------------------- 1 | F3170756 -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_empty_varbox/crc32.txt: -------------------------------------------------------------------------------- 1 | EEE67E02 -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_home_button/crc32.txt: -------------------------------------------------------------------------------- 1 | E88DD0CA -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_numpy_matplotlib_compatibility/crc32.txt: -------------------------------------------------------------------------------- 1 | 13DFC5F0 -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_parabola/crc32.txt: -------------------------------------------------------------------------------- 1 | 998B65EE -------------------------------------------------------------------------------- /tests/screenshots_dataset/python_script_name_interrupted_by_modal_view/crc32.txt: -------------------------------------------------------------------------------- 1 | 7F1E15D1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_auto_compute_range/crc32.txt: -------------------------------------------------------------------------------- 1 | FDA964BB -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_calculation_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 4459204D -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_calculation_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 2282C658 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_calculation_3/crc32.txt: -------------------------------------------------------------------------------- 1 | AD18405E -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_calculation_4/crc32.txt: -------------------------------------------------------------------------------- 1 | 9A82BEDE -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_calculation_5/crc32.txt: -------------------------------------------------------------------------------- 1 | 6582A004 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_calculation_6/crc32.txt: -------------------------------------------------------------------------------- 1 | D917A1C6 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_calculation_7/crc32.txt: -------------------------------------------------------------------------------- 1 | C768B5FD 2 | 486BF56D 3 | -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_cubic_x_given_y/crc32.txt: -------------------------------------------------------------------------------- 1 | AFF542BF -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_data_not_suitable/crc32.txt: -------------------------------------------------------------------------------- 1 | 065162E7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_function_in_varbox/crc32.txt: -------------------------------------------------------------------------------- 1 | 79C7426B -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_function_not_in_grapher/crc32.txt: -------------------------------------------------------------------------------- 1 | C3BEDC33 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_graph_pan/crc32.txt: -------------------------------------------------------------------------------- 1 | 241C4019 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_logistic/crc32.txt: -------------------------------------------------------------------------------- 1 | B8CC49DF -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_model_list/crc32.txt: -------------------------------------------------------------------------------- 1 | 7B1EEC23 -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_trigonometric/crc32.txt: -------------------------------------------------------------------------------- 1 | 4370417E -------------------------------------------------------------------------------- /tests/screenshots_dataset/regression_x_y_predictions/crc32.txt: -------------------------------------------------------------------------------- 1 | 25DD3EDB -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_calculation_menu/crc32.txt: -------------------------------------------------------------------------------- 1 | CC28A588 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_change_color/crc32.txt: -------------------------------------------------------------------------------- 1 | ED4FDAC7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_change_first_index/crc32.txt: -------------------------------------------------------------------------------- 1 | 579CC215 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_cobweb_1/crc32.txt: -------------------------------------------------------------------------------- 1 | DDC0A309 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_cobweb_2/crc32.txt: -------------------------------------------------------------------------------- 1 | DA8D4B6F -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_cobweb_dependency_first_term/crc32.txt: -------------------------------------------------------------------------------- 1 | 2F459A00 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_delete_sequence/crc32.txt: -------------------------------------------------------------------------------- 1 | D93CB25D -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_empty_expression/crc32.txt: -------------------------------------------------------------------------------- 1 | D4BF2AB2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_graph_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 2926FAAE -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_graph_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 93711588 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_graph_navigate_and_goto/crc32.txt: -------------------------------------------------------------------------------- 1 | 06165C52 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_graph_sum_terms/crc32.txt: -------------------------------------------------------------------------------- 1 | 7F594F27 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_graph_zoom_and_ranges/crc32.txt: -------------------------------------------------------------------------------- 1 | B33C578F -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_hide_sequence/crc32.txt: -------------------------------------------------------------------------------- 1 | E2A9F1D1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_in_1D_field/crc32.txt: -------------------------------------------------------------------------------- 1 | 221AB1AE -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_interdependency/crc32.txt: -------------------------------------------------------------------------------- 1 | 206ACBEA -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_interdependency_impossible/crc32.txt: -------------------------------------------------------------------------------- 1 | A52321D2 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_invalid_dimension/crc32.txt: -------------------------------------------------------------------------------- 1 | 1423A8FA -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_linear_edition/crc32.txt: -------------------------------------------------------------------------------- 1 | 513CDE30 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_values_clear_on_button_row/crc32.txt: -------------------------------------------------------------------------------- 1 | 1A18BD99 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_values_deletion_line/crc32.txt: -------------------------------------------------------------------------------- 1 | 42BD0D3C -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_values_interval_column/crc32.txt: -------------------------------------------------------------------------------- 1 | EFF10F25 -------------------------------------------------------------------------------- /tests/screenshots_dataset/sequences_values_sum_terms/crc32.txt: -------------------------------------------------------------------------------- 1 | 9847143B -------------------------------------------------------------------------------- /tests/screenshots_dataset/settings/crc32.txt: -------------------------------------------------------------------------------- 1 | C1E26300 -------------------------------------------------------------------------------- /tests/screenshots_dataset/settings_screen_timeout/crc32.txt: -------------------------------------------------------------------------------- 1 | 7FFAF73A -------------------------------------------------------------------------------- /tests/screenshots_dataset/settings_scroll_reload/crc32.txt: -------------------------------------------------------------------------------- 1 | D7F02E82 -------------------------------------------------------------------------------- /tests/screenshots_dataset/settings_submenu_row_scrolling_reset/crc32.txt: -------------------------------------------------------------------------------- 1 | 84573D02 -------------------------------------------------------------------------------- /tests/screenshots_dataset/shared_text_buffer_reinit/crc32.txt: -------------------------------------------------------------------------------- 1 | 97F8CC73 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_approximate_delta/crc32.txt: -------------------------------------------------------------------------------- 1 | 0A77EC53 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_approximate_sequence/crc32.txt: -------------------------------------------------------------------------------- 1 | 419C9EC5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_approximate_with_user_variable/crc32.txt: -------------------------------------------------------------------------------- 1 | EE6707F9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_autocompletion/crc32.txt: -------------------------------------------------------------------------------- 1 | 53B11E3F -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_display_permission_derivative/crc32.txt: -------------------------------------------------------------------------------- 1 | C2F6C5F7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_display_permission_sequence/crc32.txt: -------------------------------------------------------------------------------- 1 | F1156699 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_equation_with_list/crc32.txt: -------------------------------------------------------------------------------- 1 | E2DC146F -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_equation_with_matrix/crc32.txt: -------------------------------------------------------------------------------- 1 | DAF747D3 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_ignore_list_variables/crc32.txt: -------------------------------------------------------------------------------- 1 | B7449FB7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_interval/crc32.txt: -------------------------------------------------------------------------------- 1 | 97D50D93 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_linear_system_infinite_number_solutions/crc32.txt: -------------------------------------------------------------------------------- 1 | D5A0F2A7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_linear_system_no_solution/crc32.txt: -------------------------------------------------------------------------------- 1 | 160EE8D1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_no_equations/crc32.txt: -------------------------------------------------------------------------------- 1 | E5D5DAE4 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_non_linear_system/crc32.txt: -------------------------------------------------------------------------------- 1 | E4CF80EE -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_nonreal_equation/crc32.txt: -------------------------------------------------------------------------------- 1 | 0BFAD345 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_polynomial_negative_discriminant/crc32.txt: -------------------------------------------------------------------------------- 1 | 10CA2D1F -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_polynomial_null_discriminant/crc32.txt: -------------------------------------------------------------------------------- 1 | A67A452F -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_polynomial_positive_discriminant/crc32.txt: -------------------------------------------------------------------------------- 1 | B7CFEA10 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_predefined_variables/crc32.txt: -------------------------------------------------------------------------------- 1 | 08AE2DAB -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_proper_complex_reduction/crc32.txt: -------------------------------------------------------------------------------- 1 | 7E3C24F9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_solution_approximate_equal_sign/crc32.txt: -------------------------------------------------------------------------------- 1 | 7B04CD20 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_solution_exact_equal_sign/crc32.txt: -------------------------------------------------------------------------------- 1 | 10D8ABF0 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_solution_polar_format/crc32.txt: -------------------------------------------------------------------------------- 1 | 1D1012E5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_solution_reset_memoization/crc32.txt: -------------------------------------------------------------------------------- 1 | AA05AE58 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_solutions_less_than_ten/crc32.txt: -------------------------------------------------------------------------------- 1 | 6F269CC6 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_solutions_offset_reset/crc32.txt: -------------------------------------------------------------------------------- 1 | DCA49DF7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_symbol_in_function/crc32.txt: -------------------------------------------------------------------------------- 1 | D853D430 -------------------------------------------------------------------------------- /tests/screenshots_dataset/solver_unhandled_equation/crc32.txt: -------------------------------------------------------------------------------- 1 | 8D99A6BB -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_cumulative_frequencies_column_1/crc32.txt: -------------------------------------------------------------------------------- 1 | 8759A4FE -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_cumulative_frequencies_column_2/crc32.txt: -------------------------------------------------------------------------------- 1 | ADBC7CAC -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_cumulative_frequencies_column_3/crc32.txt: -------------------------------------------------------------------------------- 1 | 608ADEE6 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_cumulative_frequencies_column_4/crc32.txt: -------------------------------------------------------------------------------- 1 | D209C2D5 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_fill_and_clear/crc32.txt: -------------------------------------------------------------------------------- 1 | F22E8842 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_fill_column_randintnorep/crc32.txt: -------------------------------------------------------------------------------- 1 | 7EEED38F -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_fill_with_other_list/crc32.txt: -------------------------------------------------------------------------------- 1 | 18B10C51 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_insertion_preserves_scroll/crc32.txt: -------------------------------------------------------------------------------- 1 | EC249E4B -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_invalid_frequencies/crc32.txt: -------------------------------------------------------------------------------- 1 | DB559939 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_data_stays_deactivated/crc32.txt: -------------------------------------------------------------------------------- 1 | 59C87B40 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_boxplot/crc32.txt: -------------------------------------------------------------------------------- 1 | 232B638E -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_cumulative_frequencies/crc32.txt: -------------------------------------------------------------------------------- 1 | 6BD83824 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_histogram/crc32.txt: -------------------------------------------------------------------------------- 1 | 342F87E9 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_histogram_2/crc32.txt: -------------------------------------------------------------------------------- 1 | 2A110B93 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_histogram_active_series/crc32.txt: -------------------------------------------------------------------------------- 1 | 91861F4E -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_histogram_bar_height_zero/crc32.txt: -------------------------------------------------------------------------------- 1 | FB2F41B7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_histogram_minimal_bar_height/crc32.txt: -------------------------------------------------------------------------------- 1 | AABF555B 2 | -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_histogram_scroll/crc32.txt: -------------------------------------------------------------------------------- 1 | C2D144B6 2 | -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_graph_normal_probability_plot/crc32.txt: -------------------------------------------------------------------------------- 1 | B4B49C31 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_histogram_double_precision/crc32.txt: -------------------------------------------------------------------------------- 1 | FE2E2F90 2 | -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_invalid_data/crc32.txt: -------------------------------------------------------------------------------- 1 | 2A22E47C -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_memoize_formula_layout/crc32.txt: -------------------------------------------------------------------------------- 1 | 8CF1CE83 -------------------------------------------------------------------------------- /tests/screenshots_dataset/statistics_values_table/crc32.txt: -------------------------------------------------------------------------------- 1 | 9D006C48 -------------------------------------------------------------------------------- /tests/screenshots_dataset/store_menu/crc32.txt: -------------------------------------------------------------------------------- 1 | BC3E7439 -------------------------------------------------------------------------------- /tests/screenshots_dataset/store_menu_linear_edition/crc32.txt: -------------------------------------------------------------------------------- 1 | C090C53C -------------------------------------------------------------------------------- /tests/screenshots_dataset/text_field_scroll/crc32.txt: -------------------------------------------------------------------------------- 1 | D848A797 -------------------------------------------------------------------------------- /tests/screenshots_dataset/toolbox_calculation/crc32.txt: -------------------------------------------------------------------------------- 1 | 25BF5EA1 -------------------------------------------------------------------------------- /tests/screenshots_dataset/toolbox_grapher/crc32.txt: -------------------------------------------------------------------------------- 1 | AE211A90 -------------------------------------------------------------------------------- /tests/screenshots_dataset/toolbox_grapher_domain/crc32.txt: -------------------------------------------------------------------------------- 1 | 631B3BD6 -------------------------------------------------------------------------------- /tests/screenshots_dataset/toolbox_saved_scroll/crc32.txt: -------------------------------------------------------------------------------- 1 | 615B772B -------------------------------------------------------------------------------- /tests/screenshots_dataset/variable_box/crc32.txt: -------------------------------------------------------------------------------- 1 | B0CC58A7 -------------------------------------------------------------------------------- /tests/screenshots_dataset/xnt_default_cycle_start/crc32.txt: -------------------------------------------------------------------------------- 1 | 952FFA1B -------------------------------------------------------------------------------- /tests/screenshots_dataset/xnt_layout_1D/crc32.txt: -------------------------------------------------------------------------------- 1 | FEB41045 -------------------------------------------------------------------------------- /tests/screenshots_dataset/xnt_layout_2D/crc32.txt: -------------------------------------------------------------------------------- 1 | EB6B1065 -------------------------------------------------------------------------------- /tests/screenshots_dataset/xnt_text_1D/crc32.txt: -------------------------------------------------------------------------------- 1 | 4AD6DE2F -------------------------------------------------------------------------------- /tests/screenshots_dataset_cas/calculation_derivatives/crc32.txt: -------------------------------------------------------------------------------- 1 | 4F8458CC 2 | -------------------------------------------------------------------------------- /tests/screenshots_dataset_cas/calculation_simple/crc32.txt: -------------------------------------------------------------------------------- 1 | 80495DBA -------------------------------------------------------------------------------- /tests/screenshots_dataset_cas/grapher_formal_details/crc32.txt: -------------------------------------------------------------------------------- 1 | 255C3C65 --------------------------------------------------------------------------------