Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LO21_Pin_Noir_Boucher_Bouri_Detree
CellulutLO21
Commits
4c1b0748
Commit
4c1b0748
authored
Jun 05, 2021
by
Eugene Pin
Browse files
fix bug sur le nombre des etats
parent
c62e083d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/interface.cpp
View file @
4c1b0748
...
...
@@ -508,10 +508,10 @@ void MainWindow::ui_update_alphabet(const Alphabet &alpha)
{
ui
->
grid_view
->
set_alphabet
(
alpha
);
ui
->
nbrStateComboBox
->
clear
();
std
::
cout
<<
alpha
.
taille
()
<<
endl
;
fflush
(
stdout
);
for
(
unsigned
i
=
0
;
i
<
alpha
.
taille
();
++
i
)
ui
->
nbrStateComboBox
->
addItem
(
QString
::
number
(
i
));
ui
->
nbrStatesComboBox
->
clear
();
ui
->
nbrStatesComboBox
->
addItem
(
QString
::
number
(
alpha
.
taille
()));
}
void
MainWindow
::
save_grid_configuration
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment