R/tsqca_config_chart.R
generate_solution_note.RdCreates a note explaining that multiple equivalent solutions exist and that the displayed configuration is based on M1.
Character string of the note, or empty string if n_sol <= 1.
# Simple note
generate_solution_note(2, style = "simple")
#> [1] "*Note: 2 logically equivalent solutions were identified. This table presents configurations based on M1.*"
# Detailed note with EPIs
generate_solution_note(3, epi_list = c("A*B", "C"), style = "detailed")
#> [1] "*Note: 3 logically equivalent solutions were identified (M1-M3). This table presents configurations based on M1. All solutions share the essential prime implicants: A·B and C.*"
# Japanese
generate_solution_note(2, style = "simple", language = "ja")
#> [1] "*注: 論理的に等価な2つの解が得られた。本表はM1に基づく構成を示す。*"