Hashiparmentier 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/bin/Hashiparmentier +3 -0
- data/launcher.command +3 -0
- data/lib/Hashiparmentier.rb +8 -0
- data/lib/Hashiparmentier/BDD/BDDDPQADSAHASHIPARMENTIER.db +0 -0
- data/lib/Hashiparmentier/BDD/Base.sqlite +0 -0
- data/lib/Hashiparmentier/Base.sqlite +0 -0
- data/lib/Hashiparmentier/CSS/Style.rb +184 -0
- data/lib/Hashiparmentier/Core/Action.rb +48 -0
- data/lib/Hashiparmentier/Core/Aide.rb +28 -0
- data/lib/Hashiparmentier/Core/Case.rb +92 -0
- data/lib/Hashiparmentier/Core/Chrono.rb +96 -0
- data/lib/Hashiparmentier/Core/Compte.rb +137 -0
- data/lib/Hashiparmentier/Core/ConnectSqlite3.rb +19 -0
- data/lib/Hashiparmentier/Core/Couleur.rb +94 -0
- data/lib/Hashiparmentier/Core/DonnerTechnique.rb +70 -0
- data/lib/Hashiparmentier/Core/Grille.rb +804 -0
- data/lib/Hashiparmentier/Core/Hypothese.rb +43 -0
- data/lib/Hashiparmentier/Core/Ile.rb +330 -0
- data/lib/Hashiparmentier/Core/Jeu.rb +177 -0
- data/lib/Hashiparmentier/Core/Pile.rb +85 -0
- data/lib/Hashiparmentier/Core/Pont.rb +300 -0
- data/lib/Hashiparmentier/Core/Sauvegarde.rb +176 -0
- data/lib/Hashiparmentier/Core/UndoRedo.rb +93 -0
- data/lib/Hashiparmentier/Core/VerifierGrille.rb +51 -0
- data/lib/Hashiparmentier/Data/Golden Bridge.jpg +0 -0
- data/lib/Hashiparmentier/Data/Pont Gaulois.jpg +0 -0
- data/lib/Hashiparmentier/Data/Zubi Zuri.jpg +0 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-0-001.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-0-002.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-0-003.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-1-001.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-1-002.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-1-003.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-2-001.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-2-002.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1010-2-003.txt +12 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-0-001.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-0-002.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-0-003.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-1-001.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-1-002.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-1-003.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-2-001.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-2-002.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-1515-2-003.txt +17 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-0-001.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-0-002.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-0-003.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-1-001.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-1-002.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-1-003.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-2-001.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-2-002.txt +9 -0
- data/lib/Hashiparmentier/NouvellesGrilles/map-77-2-003.txt +9 -0
- data/lib/Hashiparmentier/Test/Gemfile +3 -0
- data/lib/Hashiparmentier/Test/MajBDDGrille.rb +10 -0
- data/lib/Hashiparmentier/Test/NotAMalwareDefinitiveEdition +3 -0
- data/lib/Hashiparmentier/Test/NotAMalwareDefinitiveEdition~ +2 -0
- data/lib/Hashiparmentier/Test/NotAMalware~ +2 -0
- data/lib/Hashiparmentier/Test/TestChargerGrille.rb +7 -0
- data/lib/Hashiparmentier/Test/TestCompte.rb +51 -0
- data/lib/Hashiparmentier/Test/TestFenetre.rb +10 -0
- data/lib/Hashiparmentier/Test/TestGrille.rb +27 -0
- data/lib/Hashiparmentier/Test/TestJeu.rb +47 -0
- data/lib/Hashiparmentier/Test/TestPont.rb +73 -0
- data/lib/Hashiparmentier/Test/TestSauvegarde.rb +53 -0
- data/lib/Hashiparmentier/Test/execLinux.sh +8 -0
- data/lib/Hashiparmentier/Test/icone/Custom-Icon-Design-2014-World-Cup-Flags-Japan.ico +0 -0
- data/lib/Hashiparmentier/Test/test.bat +1 -0
- data/lib/Hashiparmentier/Test/testExec +2 -0
- data/lib/Hashiparmentier/Test/testTestExec.rb +3 -0
- data/lib/Hashiparmentier/UI/AideJeuUI.rb +22 -0
- data/lib/Hashiparmentier/UI/AideUI.rb +22 -0
- data/lib/Hashiparmentier/UI/AstucesUI.rb +23 -0
- data/lib/Hashiparmentier/UI/CaseUI.rb +70 -0
- data/lib/Hashiparmentier/UI/ChoixDifficulteUI.rb +45 -0
- data/lib/Hashiparmentier/UI/ChoixGrilleScrollUI.rb +37 -0
- data/lib/Hashiparmentier/UI/ChoixGrilleUI.rb +80 -0
- data/lib/Hashiparmentier/UI/ChoixNomUI.rb +39 -0
- data/lib/Hashiparmentier/UI/ChoixTailleUI.rb +44 -0
- data/lib/Hashiparmentier/UI/Fenetre.rb +32 -0
- data/lib/Hashiparmentier/UI/FenetreFinUI.rb +71 -0
- data/lib/Hashiparmentier/UI/FenetreJeuUI.rb +193 -0
- data/lib/Hashiparmentier/UI/FenetreReglesUI.rb +28 -0
- data/lib/Hashiparmentier/UI/FinUI.rb +91 -0
- data/lib/Hashiparmentier/UI/GrilleJouableUI.rb +47 -0
- data/lib/Hashiparmentier/UI/GrilleUI.rb +140 -0
- data/lib/Hashiparmentier/UI/IleUI.rb +87 -0
- data/lib/Hashiparmentier/UI/JeuUI.rb +161 -0
- data/lib/Hashiparmentier/UI/Menu.rb +322 -0
- data/lib/Hashiparmentier/UI/MenuUI.rb +107 -0
- data/lib/Hashiparmentier/UI/PontUI.rb +135 -0
- data/lib/Hashiparmentier/UI/RacineUI.rb +142 -0
- data/lib/Hashiparmentier/UI/ReglesUI.rb +22 -0
- data/lib/Hashiparmentier/doc/Action.html +259 -0
- data/lib/Hashiparmentier/doc/Aide.html +229 -0
- data/lib/Hashiparmentier/doc/AideUI.html +168 -0
- data/lib/Hashiparmentier/doc/Case.html +473 -0
- data/lib/Hashiparmentier/doc/CaseUI.html +343 -0
- data/lib/Hashiparmentier/doc/ChoixDifficulteUI.html +209 -0
- data/lib/Hashiparmentier/doc/ChoixGrilleScrollUI.html +239 -0
- data/lib/Hashiparmentier/doc/ChoixGrilleUI.html +276 -0
- data/lib/Hashiparmentier/doc/ChoixNomUI.html +215 -0
- data/lib/Hashiparmentier/doc/ChoixTailleUI.html +210 -0
- data/lib/Hashiparmentier/doc/Chrono.html +420 -0
- data/lib/Hashiparmentier/doc/Compte.html +514 -0
- data/lib/Hashiparmentier/doc/Couleur.html +422 -0
- data/lib/Hashiparmentier/doc/DonnerTechnique.html +245 -0
- data/lib/Hashiparmentier/doc/Fenetre.html +179 -0
- data/lib/Hashiparmentier/doc/FenetreJeuUI.html +274 -0
- data/lib/Hashiparmentier/doc/FenetreReglesUI.html +167 -0
- data/lib/Hashiparmentier/doc/FinUI.html +274 -0
- data/lib/Hashiparmentier/doc/Grille.html +2153 -0
- data/lib/Hashiparmentier/doc/GrilleJouableUI.html +229 -0
- data/lib/Hashiparmentier/doc/GrilleUI.html +477 -0
- data/lib/Hashiparmentier/doc/Hypothese.html +248 -0
- data/lib/Hashiparmentier/doc/Ile.html +1103 -0
- data/lib/Hashiparmentier/doc/IleUI.html +244 -0
- data/lib/Hashiparmentier/doc/Jeu.html +179 -0
- data/lib/Hashiparmentier/doc/JeuUI.html +471 -0
- data/lib/Hashiparmentier/doc/Menu.html +667 -0
- data/lib/Hashiparmentier/doc/MenuUI.html +416 -0
- data/lib/Hashiparmentier/doc/Pile.html +383 -0
- data/lib/Hashiparmentier/doc/Pont.html +943 -0
- data/lib/Hashiparmentier/doc/PontUI.html +307 -0
- data/lib/Hashiparmentier/doc/RacineUI.html +387 -0
- data/lib/Hashiparmentier/doc/ReglesUI.html +203 -0
- data/lib/Hashiparmentier/doc/Sauvegarde.html +672 -0
- data/lib/Hashiparmentier/doc/UndoRedo.html +389 -0
- data/lib/Hashiparmentier/doc/VerifierGrille.html +225 -0
- data/lib/Hashiparmentier/doc/created.rid +46 -0
- data/lib/Hashiparmentier/doc/css/fonts.css +167 -0
- data/lib/Hashiparmentier/doc/css/rdoc.css +590 -0
- data/lib/Hashiparmentier/doc/fonts/Lato-Light.ttf +0 -0
- data/lib/Hashiparmentier/doc/fonts/Lato-LightItalic.ttf +0 -0
- data/lib/Hashiparmentier/doc/fonts/Lato-Regular.ttf +0 -0
- data/lib/Hashiparmentier/doc/fonts/Lato-RegularItalic.ttf +0 -0
- data/lib/Hashiparmentier/doc/fonts/SourceCodePro-Bold.ttf +0 -0
- data/lib/Hashiparmentier/doc/fonts/SourceCodePro-Regular.ttf +0 -0
- data/lib/Hashiparmentier/doc/images/add.png +0 -0
- data/lib/Hashiparmentier/doc/images/arrow_up.png +0 -0
- data/lib/Hashiparmentier/doc/images/brick.png +0 -0
- data/lib/Hashiparmentier/doc/images/brick_link.png +0 -0
- data/lib/Hashiparmentier/doc/images/bug.png +0 -0
- data/lib/Hashiparmentier/doc/images/bullet_black.png +0 -0
- data/lib/Hashiparmentier/doc/images/bullet_toggle_minus.png +0 -0
- data/lib/Hashiparmentier/doc/images/bullet_toggle_plus.png +0 -0
- data/lib/Hashiparmentier/doc/images/date.png +0 -0
- data/lib/Hashiparmentier/doc/images/delete.png +0 -0
- data/lib/Hashiparmentier/doc/images/find.png +0 -0
- data/lib/Hashiparmentier/doc/images/loadingAnimation.gif +0 -0
- data/lib/Hashiparmentier/doc/images/macFFBgHack.png +0 -0
- data/lib/Hashiparmentier/doc/images/package.png +0 -0
- data/lib/Hashiparmentier/doc/images/page_green.png +0 -0
- data/lib/Hashiparmentier/doc/images/page_white_text.png +0 -0
- data/lib/Hashiparmentier/doc/images/page_white_width.png +0 -0
- data/lib/Hashiparmentier/doc/images/plugin.png +0 -0
- data/lib/Hashiparmentier/doc/images/ruby.png +0 -0
- data/lib/Hashiparmentier/doc/images/tag_blue.png +0 -0
- data/lib/Hashiparmentier/doc/images/tag_green.png +0 -0
- data/lib/Hashiparmentier/doc/images/transparent.png +0 -0
- data/lib/Hashiparmentier/doc/images/wrench.png +0 -0
- data/lib/Hashiparmentier/doc/images/wrench_orange.png +0 -0
- data/lib/Hashiparmentier/doc/images/zoom.png +0 -0
- data/lib/Hashiparmentier/doc/index.html +154 -0
- data/lib/Hashiparmentier/doc/js/darkfish.js +161 -0
- data/lib/Hashiparmentier/doc/js/jquery.js +4 -0
- data/lib/Hashiparmentier/doc/js/navigation.js +141 -0
- data/lib/Hashiparmentier/doc/js/navigation.js.gz +0 -0
- data/lib/Hashiparmentier/doc/js/search.js +109 -0
- data/lib/Hashiparmentier/doc/js/search_index.js +1 -0
- data/lib/Hashiparmentier/doc/js/search_index.js.gz +0 -0
- data/lib/Hashiparmentier/doc/js/searcher.js +229 -0
- data/lib/Hashiparmentier/doc/js/searcher.js.gz +0 -0
- data/lib/Hashiparmentier/doc/table_of_contents.html +1197 -0
- data/lib/Hashiparmentier/glade/Fin.glade +222 -0
- data/lib/Hashiparmentier/glade/aide.glade +127 -0
- data/lib/Hashiparmentier/glade/aideJeu.glade +143 -0
- data/lib/Hashiparmentier/glade/astuces.glade +1558 -0
- data/lib/Hashiparmentier/glade/fonts/VINERITC.TTF +0 -0
- data/lib/Hashiparmentier/glade/images/18790.ico +0 -0
- data/lib/Hashiparmentier/glade/images/1stars.png +0 -0
- data/lib/Hashiparmentier/glade/images/2stars.png +0 -0
- data/lib/Hashiparmentier/glade/images/3stars.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-07 11-48-54.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 17-54-16.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-00-00.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-01-25.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-17-16.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-17-40.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-18-01.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-18-23.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-19-00.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-19-17.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-13 18-19-54.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-24-24.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-24-44.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-24-58.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-25-16.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-25-36.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-25-51.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-26-04.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 14-26-15.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-01-40.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-02-08.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-02-33.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-02-54.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-03-13.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-03-39.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-03-55.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-04-10.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-33-07.png +0 -0
- data/lib/Hashiparmentier/glade/images/Capture du 2020-02-18 15-36-05.png +0 -0
- data/lib/Hashiparmentier/glade/images/LOGO.png +0 -0
- data/lib/Hashiparmentier/glade/images/LOGpR.png +0 -0
- data/lib/Hashiparmentier/glade/images/LOGpR2.png +0 -0
- data/lib/Hashiparmentier/glade/images/bg.jpg +0 -0
- data/lib/Hashiparmentier/glade/images/ex111.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex112.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex211.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex212.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex221.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex222.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex231.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex232.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex241.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex242.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex251.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex252.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex311.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex312.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex321.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex322.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex331.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex332.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex341.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex342.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex411.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex412.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex413.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex421.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex422.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex423.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex431.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex432.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex433.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex441.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex442.png +0 -0
- data/lib/Hashiparmentier/glade/images/ex443.png +0 -0
- data/lib/Hashiparmentier/glade/images/icone.png +0 -0
- data/lib/Hashiparmentier/glade/images/puzzle-solvation.gif +0 -0
- data/lib/Hashiparmentier/glade/images/wJapStylePlusNet.jpg +0 -0
- data/lib/Hashiparmentier/glade/images/wJapStylePlusNet15.jpg +0 -0
- data/lib/Hashiparmentier/glade/jeu.glade +539 -0
- data/lib/Hashiparmentier/glade/menu.glade +511 -0
- data/lib/Hashiparmentier/glade/regles.glade +856 -0
- data/lib/Hashiparmentier/map.txt +316 -0
- metadata +347 -0
@@ -0,0 +1,1558 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<interface>
|
3
|
+
<!-- interface-requires gtk+ 3.0 -->
|
4
|
+
<object class="GtkImage" id="image33">
|
5
|
+
<property name="visible">True</property>
|
6
|
+
<property name="can_focus">False</property>
|
7
|
+
<property name="stock">gtk-stop</property>
|
8
|
+
</object>
|
9
|
+
<object class="GtkWindow" id="windowAstuces">
|
10
|
+
<property name="can_focus">False</property>
|
11
|
+
<property name="title" translatable="yes">HASHI - Astuces</property>
|
12
|
+
<property name="icon">images/icone.png</property>
|
13
|
+
<child>
|
14
|
+
<object class="GtkScrolledWindow" id="scrolledwindow1">
|
15
|
+
<property name="visible">True</property>
|
16
|
+
<property name="can_focus">True</property>
|
17
|
+
<property name="shadow_type">in</property>
|
18
|
+
<child>
|
19
|
+
<object class="GtkViewport" id="viewport1">
|
20
|
+
<property name="visible">True</property>
|
21
|
+
<property name="can_focus">False</property>
|
22
|
+
<child>
|
23
|
+
<object class="GtkGrid" id="grid1">
|
24
|
+
<property name="visible">True</property>
|
25
|
+
<property name="can_focus">False</property>
|
26
|
+
<property name="column_homogeneous">True</property>
|
27
|
+
<child>
|
28
|
+
<object class="GtkImage" id="titre">
|
29
|
+
<property name="visible">True</property>
|
30
|
+
<property name="can_focus">False</property>
|
31
|
+
<property name="margin_top">15</property>
|
32
|
+
<property name="margin_bottom">15</property>
|
33
|
+
<property name="pixbuf">images/LOGpR2.png</property>
|
34
|
+
</object>
|
35
|
+
<packing>
|
36
|
+
<property name="left_attach">0</property>
|
37
|
+
<property name="top_attach">0</property>
|
38
|
+
<property name="width">3</property>
|
39
|
+
<property name="height">1</property>
|
40
|
+
</packing>
|
41
|
+
</child>
|
42
|
+
<child>
|
43
|
+
<object class="GtkLabel" id="lblRegles">
|
44
|
+
<property name="visible">True</property>
|
45
|
+
<property name="can_focus">False</property>
|
46
|
+
<property name="margin_top">15</property>
|
47
|
+
<property name="margin_bottom">15</property>
|
48
|
+
<property name="label" translatable="yes">ASTUCES</property>
|
49
|
+
<attributes>
|
50
|
+
<attribute name="font-desc" value="Viner Hand ITC 20"/>
|
51
|
+
</attributes>
|
52
|
+
</object>
|
53
|
+
<packing>
|
54
|
+
<property name="left_attach">0</property>
|
55
|
+
<property name="top_attach">1</property>
|
56
|
+
<property name="width">3</property>
|
57
|
+
<property name="height">1</property>
|
58
|
+
</packing>
|
59
|
+
</child>
|
60
|
+
<child>
|
61
|
+
<object class="GtkLabel" id="label1">
|
62
|
+
<property name="visible">True</property>
|
63
|
+
<property name="can_focus">False</property>
|
64
|
+
<property name="halign">start</property>
|
65
|
+
<property name="margin_left">15</property>
|
66
|
+
<property name="margin_bottom">5</property>
|
67
|
+
<property name="label" translatable="yes">Techniques de démarrage</property>
|
68
|
+
<attributes>
|
69
|
+
<attribute name="font-desc" value="Viner Hand ITC 18"/>
|
70
|
+
</attributes>
|
71
|
+
</object>
|
72
|
+
<packing>
|
73
|
+
<property name="left_attach">0</property>
|
74
|
+
<property name="top_attach">2</property>
|
75
|
+
<property name="width">3</property>
|
76
|
+
<property name="height">1</property>
|
77
|
+
</packing>
|
78
|
+
</child>
|
79
|
+
<child>
|
80
|
+
<object class="GtkLabel" id="label2">
|
81
|
+
<property name="visible">True</property>
|
82
|
+
<property name="can_focus">False</property>
|
83
|
+
<property name="halign">start</property>
|
84
|
+
<property name="margin_left">30</property>
|
85
|
+
<property name="label" translatable="yes">1 - Iles avec 4 dans un angle, 6 sur un côté, 8 au milieu
|
86
|
+
</property>
|
87
|
+
</object>
|
88
|
+
<packing>
|
89
|
+
<property name="left_attach">0</property>
|
90
|
+
<property name="top_attach">3</property>
|
91
|
+
<property name="width">3</property>
|
92
|
+
<property name="height">1</property>
|
93
|
+
</packing>
|
94
|
+
</child>
|
95
|
+
<child>
|
96
|
+
<object class="GtkLabel" id="label3">
|
97
|
+
<property name="visible">True</property>
|
98
|
+
<property name="can_focus">False</property>
|
99
|
+
<property name="halign">start</property>
|
100
|
+
<property name="margin_left">15</property>
|
101
|
+
<property name="margin_top">15</property>
|
102
|
+
<property name="margin_bottom">5</property>
|
103
|
+
<property name="label" translatable="yes">Techniques basiques</property>
|
104
|
+
<attributes>
|
105
|
+
<attribute name="font-desc" value="Viner Hand ITC 18"/>
|
106
|
+
</attributes>
|
107
|
+
</object>
|
108
|
+
<packing>
|
109
|
+
<property name="left_attach">0</property>
|
110
|
+
<property name="top_attach">4</property>
|
111
|
+
<property name="width">3</property>
|
112
|
+
<property name="height">1</property>
|
113
|
+
</packing>
|
114
|
+
</child>
|
115
|
+
<child>
|
116
|
+
<object class="GtkLabel" id="label4">
|
117
|
+
<property name="visible">True</property>
|
118
|
+
<property name="can_focus">False</property>
|
119
|
+
<property name="halign">start</property>
|
120
|
+
<property name="margin_left">30</property>
|
121
|
+
<property name="label" translatable="yes">1 - Iles avec un voisin unique
|
122
|
+
|
123
|
+
2 - Iles avec un 3 dans un angle, 5 sur un côté, 7 au milieu
|
124
|
+
|
125
|
+
3 - Cas particulier de 3 dans un angle, 5 sur un côté, 7 au milieu
|
126
|
+
|
127
|
+
4 - Cas particulier d'un 4 sur un côté
|
128
|
+
|
129
|
+
5 - Cas particulier d'un 6 au milieu</property>
|
130
|
+
</object>
|
131
|
+
<packing>
|
132
|
+
<property name="left_attach">0</property>
|
133
|
+
<property name="top_attach">5</property>
|
134
|
+
<property name="width">3</property>
|
135
|
+
<property name="height">1</property>
|
136
|
+
</packing>
|
137
|
+
</child>
|
138
|
+
<child>
|
139
|
+
<object class="GtkLabel" id="label5">
|
140
|
+
<property name="visible">True</property>
|
141
|
+
<property name="can_focus">False</property>
|
142
|
+
<property name="halign">start</property>
|
143
|
+
<property name="margin_left">15</property>
|
144
|
+
<property name="margin_top">15</property>
|
145
|
+
<property name="margin_bottom">5</property>
|
146
|
+
<property name="label" translatable="yes">Techniques d'isolement</property>
|
147
|
+
<attributes>
|
148
|
+
<attribute name="font-desc" value="Viner Hand ITC 17"/>
|
149
|
+
</attributes>
|
150
|
+
</object>
|
151
|
+
<packing>
|
152
|
+
<property name="left_attach">0</property>
|
153
|
+
<property name="top_attach">6</property>
|
154
|
+
<property name="width">3</property>
|
155
|
+
<property name="height">1</property>
|
156
|
+
</packing>
|
157
|
+
</child>
|
158
|
+
<child>
|
159
|
+
<object class="GtkLabel" id="label6">
|
160
|
+
<property name="visible">True</property>
|
161
|
+
<property name="can_focus">False</property>
|
162
|
+
<property name="halign">start</property>
|
163
|
+
<property name="margin_left">30</property>
|
164
|
+
<property name="label" translatable="yes">1 - Isolement d'un segment à deux îles
|
165
|
+
|
166
|
+
2 - Isolement d'un segment à trois îles
|
167
|
+
|
168
|
+
3 - Isolement lorsqu'un segment se connecte à un îlot
|
169
|
+
|
170
|
+
4 - Isolement lorsqu'un segment se connecte à un autre segment</property>
|
171
|
+
</object>
|
172
|
+
<packing>
|
173
|
+
<property name="left_attach">0</property>
|
174
|
+
<property name="top_attach">7</property>
|
175
|
+
<property name="width">3</property>
|
176
|
+
<property name="height">1</property>
|
177
|
+
</packing>
|
178
|
+
</child>
|
179
|
+
<child>
|
180
|
+
<object class="GtkLabel" id="label7">
|
181
|
+
<property name="visible">True</property>
|
182
|
+
<property name="can_focus">False</property>
|
183
|
+
<property name="halign">start</property>
|
184
|
+
<property name="margin_left">15</property>
|
185
|
+
<property name="margin_top">15</property>
|
186
|
+
<property name="margin_bottom">5</property>
|
187
|
+
<property name="label" translatable="yes">Techniques avancées</property>
|
188
|
+
<attributes>
|
189
|
+
<attribute name="font-desc" value="Viner Hand ITC 18"/>
|
190
|
+
</attributes>
|
191
|
+
</object>
|
192
|
+
<packing>
|
193
|
+
<property name="left_attach">0</property>
|
194
|
+
<property name="top_attach">8</property>
|
195
|
+
<property name="width">3</property>
|
196
|
+
<property name="height">1</property>
|
197
|
+
</packing>
|
198
|
+
</child>
|
199
|
+
<child>
|
200
|
+
<object class="GtkLabel" id="label8">
|
201
|
+
<property name="visible">True</property>
|
202
|
+
<property name="can_focus">False</property>
|
203
|
+
<property name="halign">start</property>
|
204
|
+
<property name="margin_left">30</property>
|
205
|
+
<property name="margin_bottom">20</property>
|
206
|
+
<property name="label" translatable="yes">1 - Isoler un segment en bloquant un pont
|
207
|
+
|
208
|
+
2 - Isoler un segment en ajoutant un pont
|
209
|
+
|
210
|
+
3 - Isoler une île avec des ponts
|
211
|
+
|
212
|
+
4 - Création de conflits de connexion de ponts</property>
|
213
|
+
</object>
|
214
|
+
<packing>
|
215
|
+
<property name="left_attach">0</property>
|
216
|
+
<property name="top_attach">9</property>
|
217
|
+
<property name="width">3</property>
|
218
|
+
<property name="height">1</property>
|
219
|
+
</packing>
|
220
|
+
</child>
|
221
|
+
<child>
|
222
|
+
<object class="GtkSeparator" id="separator1">
|
223
|
+
<property name="visible">True</property>
|
224
|
+
<property name="can_focus">False</property>
|
225
|
+
</object>
|
226
|
+
<packing>
|
227
|
+
<property name="left_attach">0</property>
|
228
|
+
<property name="top_attach">10</property>
|
229
|
+
<property name="width">3</property>
|
230
|
+
<property name="height">1</property>
|
231
|
+
</packing>
|
232
|
+
</child>
|
233
|
+
<child>
|
234
|
+
<object class="GtkLabel" id="label9">
|
235
|
+
<property name="visible">True</property>
|
236
|
+
<property name="can_focus">False</property>
|
237
|
+
<property name="halign">start</property>
|
238
|
+
<property name="margin_left">15</property>
|
239
|
+
<property name="margin_top">15</property>
|
240
|
+
<property name="margin_bottom">5</property>
|
241
|
+
<property name="label" translatable="yes">Techniques de démarrage</property>
|
242
|
+
<attributes>
|
243
|
+
<attribute name="font-desc" value="Viner Hand ITC 18"/>
|
244
|
+
</attributes>
|
245
|
+
</object>
|
246
|
+
<packing>
|
247
|
+
<property name="left_attach">0</property>
|
248
|
+
<property name="top_attach">11</property>
|
249
|
+
<property name="width">3</property>
|
250
|
+
<property name="height">1</property>
|
251
|
+
</packing>
|
252
|
+
</child>
|
253
|
+
<child>
|
254
|
+
<object class="GtkLabel" id="label10">
|
255
|
+
<property name="visible">True</property>
|
256
|
+
<property name="can_focus">False</property>
|
257
|
+
<property name="halign">start</property>
|
258
|
+
<property name="margin_left">30</property>
|
259
|
+
<property name="label" translatable="yes">1 - Iles avec 4 dans un angle, 6 sur un côté, 8 au milieu</property>
|
260
|
+
<attributes>
|
261
|
+
<attribute name="weight" value="bold"/>
|
262
|
+
</attributes>
|
263
|
+
</object>
|
264
|
+
<packing>
|
265
|
+
<property name="left_attach">0</property>
|
266
|
+
<property name="top_attach">13</property>
|
267
|
+
<property name="width">3</property>
|
268
|
+
<property name="height">1</property>
|
269
|
+
</packing>
|
270
|
+
</child>
|
271
|
+
<child>
|
272
|
+
<object class="GtkLabel" id="label11">
|
273
|
+
<property name="visible">True</property>
|
274
|
+
<property name="can_focus">False</property>
|
275
|
+
<property name="halign">start</property>
|
276
|
+
<property name="margin_left">45</property>
|
277
|
+
<property name="ypad">10</property>
|
278
|
+
<property name="label" translatable="yes">Une île dans un coin ne peut pas avoir plus de deux voisins et le nombre de ponts vers chaque voisin ne peut
|
279
|
+
pas être supérieur à 2. Par conséquent, l'île dans le coin avec l'indice 4 doit avoir deux ponts connectés à
|
280
|
+
chacun de ses deux voisins. De même, l'île du côté du puzzle avec l'indice 6 doit avoir deux ponts connectés
|
281
|
+
à chacun de ses trois voisins et l'île au milieu du puzzle avec l'indice 8 doit avoir deux ponts connectés à chacun
|
282
|
+
de ses quatre voisins. Dans tous les cas, le nombre total de ponts est connecté.</property>
|
283
|
+
</object>
|
284
|
+
<packing>
|
285
|
+
<property name="left_attach">0</property>
|
286
|
+
<property name="top_attach">14</property>
|
287
|
+
<property name="width">3</property>
|
288
|
+
<property name="height">1</property>
|
289
|
+
</packing>
|
290
|
+
</child>
|
291
|
+
<child>
|
292
|
+
<object class="GtkLabel" id="label12">
|
293
|
+
<property name="visible">True</property>
|
294
|
+
<property name="can_focus">False</property>
|
295
|
+
<property name="halign">start</property>
|
296
|
+
<property name="margin_left">15</property>
|
297
|
+
<property name="margin_top">15</property>
|
298
|
+
<property name="margin_bottom">5</property>
|
299
|
+
<property name="label" translatable="yes">Techniques basiques</property>
|
300
|
+
<attributes>
|
301
|
+
<attribute name="font-desc" value="Viner Hand ITC 18"/>
|
302
|
+
</attributes>
|
303
|
+
</object>
|
304
|
+
<packing>
|
305
|
+
<property name="left_attach">0</property>
|
306
|
+
<property name="top_attach">16</property>
|
307
|
+
<property name="width">3</property>
|
308
|
+
<property name="height">1</property>
|
309
|
+
</packing>
|
310
|
+
</child>
|
311
|
+
<child>
|
312
|
+
<object class="GtkLabel" id="label13">
|
313
|
+
<property name="visible">True</property>
|
314
|
+
<property name="can_focus">False</property>
|
315
|
+
<property name="halign">start</property>
|
316
|
+
<property name="margin_left">30</property>
|
317
|
+
<property name="label" translatable="yes">1 - Iles avec un voisin unique</property>
|
318
|
+
<attributes>
|
319
|
+
<attribute name="weight" value="bold"/>
|
320
|
+
</attributes>
|
321
|
+
</object>
|
322
|
+
<packing>
|
323
|
+
<property name="left_attach">0</property>
|
324
|
+
<property name="top_attach">18</property>
|
325
|
+
<property name="width">3</property>
|
326
|
+
<property name="height">1</property>
|
327
|
+
</packing>
|
328
|
+
</child>
|
329
|
+
<child>
|
330
|
+
<object class="GtkLabel" id="label14">
|
331
|
+
<property name="visible">True</property>
|
332
|
+
<property name="can_focus">False</property>
|
333
|
+
<property name="halign">start</property>
|
334
|
+
<property name="margin_left">45</property>
|
335
|
+
<property name="ypad">10</property>
|
336
|
+
<property name="label" translatable="yes">L'île contenant 1 dans la rangée du bas n'a qu'un seul voisin à sa droite, ce qui signifie que nous devons connecter
|
337
|
+
un seul pont entre ces îles. De même, l'île contenant 2 en haut à droite n'a qu'un seul voisin en dessous,
|
338
|
+
ce qui signifie que nous devons connecter deux ponts entre ces îles. Dans les deux cas, l'île contenant 1 et l'île
|
339
|
+
contenant 2 sont terminées, ce qui signifie qu'elles peuvent être marquées d'un X. Notez qu'une île avec un seul voisin
|
340
|
+
ne peut jamais contenir 3 ou plus car cela violerait les règles de Hashi.</property>
|
341
|
+
</object>
|
342
|
+
<packing>
|
343
|
+
<property name="left_attach">0</property>
|
344
|
+
<property name="top_attach">19</property>
|
345
|
+
<property name="width">3</property>
|
346
|
+
<property name="height">1</property>
|
347
|
+
</packing>
|
348
|
+
</child>
|
349
|
+
<child>
|
350
|
+
<object class="GtkGrid" id="grid2">
|
351
|
+
<property name="visible">True</property>
|
352
|
+
<property name="can_focus">False</property>
|
353
|
+
<property name="column_homogeneous">True</property>
|
354
|
+
<child>
|
355
|
+
<object class="GtkImage" id="image1">
|
356
|
+
<property name="visible">True</property>
|
357
|
+
<property name="can_focus">False</property>
|
358
|
+
<property name="pixbuf">images/ex111.png</property>
|
359
|
+
</object>
|
360
|
+
<packing>
|
361
|
+
<property name="left_attach">0</property>
|
362
|
+
<property name="top_attach">0</property>
|
363
|
+
<property name="width">1</property>
|
364
|
+
<property name="height">1</property>
|
365
|
+
</packing>
|
366
|
+
</child>
|
367
|
+
<child>
|
368
|
+
<object class="GtkImage" id="image2">
|
369
|
+
<property name="visible">True</property>
|
370
|
+
<property name="can_focus">False</property>
|
371
|
+
<property name="pixbuf">images/ex112.png</property>
|
372
|
+
</object>
|
373
|
+
<packing>
|
374
|
+
<property name="left_attach">1</property>
|
375
|
+
<property name="top_attach">0</property>
|
376
|
+
<property name="width">1</property>
|
377
|
+
<property name="height">1</property>
|
378
|
+
</packing>
|
379
|
+
</child>
|
380
|
+
</object>
|
381
|
+
<packing>
|
382
|
+
<property name="left_attach">0</property>
|
383
|
+
<property name="top_attach">15</property>
|
384
|
+
<property name="width">3</property>
|
385
|
+
<property name="height">1</property>
|
386
|
+
</packing>
|
387
|
+
</child>
|
388
|
+
<child>
|
389
|
+
<object class="GtkGrid" id="grid3">
|
390
|
+
<property name="visible">True</property>
|
391
|
+
<property name="can_focus">False</property>
|
392
|
+
<property name="column_homogeneous">True</property>
|
393
|
+
<child>
|
394
|
+
<object class="GtkImage" id="image3">
|
395
|
+
<property name="visible">True</property>
|
396
|
+
<property name="can_focus">False</property>
|
397
|
+
<property name="pixbuf">images/ex211.png</property>
|
398
|
+
</object>
|
399
|
+
<packing>
|
400
|
+
<property name="left_attach">0</property>
|
401
|
+
<property name="top_attach">0</property>
|
402
|
+
<property name="width">1</property>
|
403
|
+
<property name="height">1</property>
|
404
|
+
</packing>
|
405
|
+
</child>
|
406
|
+
<child>
|
407
|
+
<object class="GtkImage" id="image4">
|
408
|
+
<property name="visible">True</property>
|
409
|
+
<property name="can_focus">False</property>
|
410
|
+
<property name="pixbuf">images/ex212.png</property>
|
411
|
+
</object>
|
412
|
+
<packing>
|
413
|
+
<property name="left_attach">1</property>
|
414
|
+
<property name="top_attach">0</property>
|
415
|
+
<property name="width">1</property>
|
416
|
+
<property name="height">1</property>
|
417
|
+
</packing>
|
418
|
+
</child>
|
419
|
+
</object>
|
420
|
+
<packing>
|
421
|
+
<property name="left_attach">0</property>
|
422
|
+
<property name="top_attach">20</property>
|
423
|
+
<property name="width">3</property>
|
424
|
+
<property name="height">1</property>
|
425
|
+
</packing>
|
426
|
+
</child>
|
427
|
+
<child>
|
428
|
+
<object class="GtkLabel" id="label15">
|
429
|
+
<property name="visible">True</property>
|
430
|
+
<property name="can_focus">False</property>
|
431
|
+
<property name="halign">start</property>
|
432
|
+
<property name="margin_left">30</property>
|
433
|
+
<property name="ypad">10</property>
|
434
|
+
<property name="label" translatable="yes">2 - Iles avec un 3 dans un angle, 5 sur un côté, 7 au milieu</property>
|
435
|
+
<attributes>
|
436
|
+
<attribute name="weight" value="bold"/>
|
437
|
+
</attributes>
|
438
|
+
</object>
|
439
|
+
<packing>
|
440
|
+
<property name="left_attach">0</property>
|
441
|
+
<property name="top_attach">21</property>
|
442
|
+
<property name="width">3</property>
|
443
|
+
<property name="height">1</property>
|
444
|
+
</packing>
|
445
|
+
</child>
|
446
|
+
<child>
|
447
|
+
<object class="GtkLabel" id="label16">
|
448
|
+
<property name="visible">True</property>
|
449
|
+
<property name="can_focus">False</property>
|
450
|
+
<property name="halign">start</property>
|
451
|
+
<property name="margin_left">45</property>
|
452
|
+
<property name="ypad">10</property>
|
453
|
+
<property name="label" translatable="yes">Une île dans un coin avec l'indice 3 doit avoir deux voisins, avec un pont connecté à un voisin et deux ponts
|
454
|
+
connectés à l'autre voisin. Bien que nous ne sachions pas quel voisin a deux ponts, nous pouvons être certains
|
455
|
+
qu'il y a au moins un pont dans chaque direction, comme le montre l'îlot dans le coin inférieur gauche de cet exemple.
|
456
|
+
De même, une île sur le côté du puzzle avec l'indice 5 doit avoir au moins un pont connecté à chacun de ses trois voisins
|
457
|
+
et une île au milieu du puzzle avec l'indice 7 doit avoir au moins un pont connecté à chacun de ses quatre voisins.</property>
|
458
|
+
</object>
|
459
|
+
<packing>
|
460
|
+
<property name="left_attach">0</property>
|
461
|
+
<property name="top_attach">22</property>
|
462
|
+
<property name="width">3</property>
|
463
|
+
<property name="height">1</property>
|
464
|
+
</packing>
|
465
|
+
</child>
|
466
|
+
<child>
|
467
|
+
<object class="GtkGrid" id="grid4">
|
468
|
+
<property name="visible">True</property>
|
469
|
+
<property name="can_focus">False</property>
|
470
|
+
<property name="column_homogeneous">True</property>
|
471
|
+
<child>
|
472
|
+
<object class="GtkImage" id="image5">
|
473
|
+
<property name="visible">True</property>
|
474
|
+
<property name="can_focus">False</property>
|
475
|
+
<property name="pixbuf">images/ex221.png</property>
|
476
|
+
</object>
|
477
|
+
<packing>
|
478
|
+
<property name="left_attach">0</property>
|
479
|
+
<property name="top_attach">0</property>
|
480
|
+
<property name="width">1</property>
|
481
|
+
<property name="height">1</property>
|
482
|
+
</packing>
|
483
|
+
</child>
|
484
|
+
<child>
|
485
|
+
<object class="GtkImage" id="image6">
|
486
|
+
<property name="visible">True</property>
|
487
|
+
<property name="can_focus">False</property>
|
488
|
+
<property name="pixbuf">images/ex222.png</property>
|
489
|
+
</object>
|
490
|
+
<packing>
|
491
|
+
<property name="left_attach">1</property>
|
492
|
+
<property name="top_attach">0</property>
|
493
|
+
<property name="width">1</property>
|
494
|
+
<property name="height">1</property>
|
495
|
+
</packing>
|
496
|
+
</child>
|
497
|
+
</object>
|
498
|
+
<packing>
|
499
|
+
<property name="left_attach">0</property>
|
500
|
+
<property name="top_attach">23</property>
|
501
|
+
<property name="width">3</property>
|
502
|
+
<property name="height">1</property>
|
503
|
+
</packing>
|
504
|
+
</child>
|
505
|
+
<child>
|
506
|
+
<object class="GtkLabel" id="label17">
|
507
|
+
<property name="visible">True</property>
|
508
|
+
<property name="can_focus">False</property>
|
509
|
+
<property name="halign">start</property>
|
510
|
+
<property name="margin_left">30</property>
|
511
|
+
<property name="ypad">10</property>
|
512
|
+
<property name="label" translatable="yes">3 - Cas particulier de 3 dans un angle, 5 sur un côté, 7 au milieu</property>
|
513
|
+
<attributes>
|
514
|
+
<attribute name="weight" value="bold"/>
|
515
|
+
</attributes>
|
516
|
+
</object>
|
517
|
+
<packing>
|
518
|
+
<property name="left_attach">0</property>
|
519
|
+
<property name="top_attach">24</property>
|
520
|
+
<property name="width">3</property>
|
521
|
+
<property name="height">1</property>
|
522
|
+
</packing>
|
523
|
+
</child>
|
524
|
+
<child>
|
525
|
+
<object class="GtkLabel" id="label18">
|
526
|
+
<property name="visible">True</property>
|
527
|
+
<property name="can_focus">False</property>
|
528
|
+
<property name="halign">start</property>
|
529
|
+
<property name="margin_left">45</property>
|
530
|
+
<property name="ypad">10</property>
|
531
|
+
<property name="label" translatable="yes">Si une île dans un coin a un indice 3 et que l'un de ses voisins est une île avec l'indice 1, toutes les conditions
|
532
|
+
sont remplies et trois ponts peuvent être tracés. La même logique peut être appliquée si une île sur le côté
|
533
|
+
du puzzle avec l'indice 5 ou si une île au milieu du puzzle avec l'indice 7 a une île voisine avec l'indice 1.</property>
|
534
|
+
</object>
|
535
|
+
<packing>
|
536
|
+
<property name="left_attach">0</property>
|
537
|
+
<property name="top_attach">25</property>
|
538
|
+
<property name="width">3</property>
|
539
|
+
<property name="height">1</property>
|
540
|
+
</packing>
|
541
|
+
</child>
|
542
|
+
<child>
|
543
|
+
<object class="GtkGrid" id="grid5">
|
544
|
+
<property name="visible">True</property>
|
545
|
+
<property name="can_focus">False</property>
|
546
|
+
<property name="column_homogeneous">True</property>
|
547
|
+
<child>
|
548
|
+
<object class="GtkImage" id="image7">
|
549
|
+
<property name="visible">True</property>
|
550
|
+
<property name="can_focus">False</property>
|
551
|
+
<property name="pixbuf">images/ex231.png</property>
|
552
|
+
</object>
|
553
|
+
<packing>
|
554
|
+
<property name="left_attach">0</property>
|
555
|
+
<property name="top_attach">0</property>
|
556
|
+
<property name="width">1</property>
|
557
|
+
<property name="height">1</property>
|
558
|
+
</packing>
|
559
|
+
</child>
|
560
|
+
<child>
|
561
|
+
<object class="GtkImage" id="image8">
|
562
|
+
<property name="visible">True</property>
|
563
|
+
<property name="can_focus">False</property>
|
564
|
+
<property name="pixbuf">images/ex232.png</property>
|
565
|
+
</object>
|
566
|
+
<packing>
|
567
|
+
<property name="left_attach">1</property>
|
568
|
+
<property name="top_attach">0</property>
|
569
|
+
<property name="width">1</property>
|
570
|
+
<property name="height">1</property>
|
571
|
+
</packing>
|
572
|
+
</child>
|
573
|
+
</object>
|
574
|
+
<packing>
|
575
|
+
<property name="left_attach">0</property>
|
576
|
+
<property name="top_attach">26</property>
|
577
|
+
<property name="width">3</property>
|
578
|
+
<property name="height">1</property>
|
579
|
+
</packing>
|
580
|
+
</child>
|
581
|
+
<child>
|
582
|
+
<object class="GtkLabel" id="label19">
|
583
|
+
<property name="visible">True</property>
|
584
|
+
<property name="can_focus">False</property>
|
585
|
+
<property name="halign">start</property>
|
586
|
+
<property name="margin_left">30</property>
|
587
|
+
<property name="ypad">10</property>
|
588
|
+
<property name="label" translatable="yes">4 - Cas particulier d'un 4 sur un côté</property>
|
589
|
+
<attributes>
|
590
|
+
<attribute name="weight" value="bold"/>
|
591
|
+
</attributes>
|
592
|
+
</object>
|
593
|
+
<packing>
|
594
|
+
<property name="left_attach">0</property>
|
595
|
+
<property name="top_attach">27</property>
|
596
|
+
<property name="width">3</property>
|
597
|
+
<property name="height">1</property>
|
598
|
+
</packing>
|
599
|
+
</child>
|
600
|
+
<child>
|
601
|
+
<object class="GtkLabel" id="label20">
|
602
|
+
<property name="visible">True</property>
|
603
|
+
<property name="can_focus">False</property>
|
604
|
+
<property name="halign">start</property>
|
605
|
+
<property name="margin_left">45</property>
|
606
|
+
<property name="ypad">10</property>
|
607
|
+
<property name="label" translatable="yes">Dans cet exemple, nous pouvons voir une île avec un indice 4 dans la deuxième rangée du bas.
|
608
|
+
Bien que le 4 ne soit pas du côté du puzzle, d'un point de vue logique, nous pouvons le traiter
|
609
|
+
comme tel car il n'a de voisins que sur trois côtés. Puisqu'il n'y a pas plus de deux ponts autorisés
|
610
|
+
dans la même direction, toutes les conditions sont remplies et quatre ponts peuvent être tracés:
|
611
|
+
deux ponts vers l'île au-dessus et un pont vers chacune des îles sur les côtés.</property>
|
612
|
+
</object>
|
613
|
+
<packing>
|
614
|
+
<property name="left_attach">0</property>
|
615
|
+
<property name="top_attach">28</property>
|
616
|
+
<property name="width">3</property>
|
617
|
+
<property name="height">1</property>
|
618
|
+
</packing>
|
619
|
+
</child>
|
620
|
+
<child>
|
621
|
+
<object class="GtkGrid" id="grid6">
|
622
|
+
<property name="visible">True</property>
|
623
|
+
<property name="can_focus">False</property>
|
624
|
+
<property name="column_homogeneous">True</property>
|
625
|
+
<child>
|
626
|
+
<object class="GtkImage" id="image9">
|
627
|
+
<property name="visible">True</property>
|
628
|
+
<property name="can_focus">False</property>
|
629
|
+
<property name="pixbuf">images/ex241.png</property>
|
630
|
+
</object>
|
631
|
+
<packing>
|
632
|
+
<property name="left_attach">0</property>
|
633
|
+
<property name="top_attach">0</property>
|
634
|
+
<property name="width">1</property>
|
635
|
+
<property name="height">1</property>
|
636
|
+
</packing>
|
637
|
+
</child>
|
638
|
+
<child>
|
639
|
+
<object class="GtkImage" id="image10">
|
640
|
+
<property name="visible">True</property>
|
641
|
+
<property name="can_focus">False</property>
|
642
|
+
<property name="pixbuf">images/ex242.png</property>
|
643
|
+
</object>
|
644
|
+
<packing>
|
645
|
+
<property name="left_attach">1</property>
|
646
|
+
<property name="top_attach">0</property>
|
647
|
+
<property name="width">1</property>
|
648
|
+
<property name="height">1</property>
|
649
|
+
</packing>
|
650
|
+
</child>
|
651
|
+
</object>
|
652
|
+
<packing>
|
653
|
+
<property name="left_attach">0</property>
|
654
|
+
<property name="top_attach">29</property>
|
655
|
+
<property name="width">3</property>
|
656
|
+
<property name="height">1</property>
|
657
|
+
</packing>
|
658
|
+
</child>
|
659
|
+
<child>
|
660
|
+
<object class="GtkLabel" id="label21">
|
661
|
+
<property name="visible">True</property>
|
662
|
+
<property name="can_focus">False</property>
|
663
|
+
<property name="halign">start</property>
|
664
|
+
<property name="margin_left">30</property>
|
665
|
+
<property name="ypad">10</property>
|
666
|
+
<property name="label" translatable="yes">5 - Cas particulier d'un 6 au milieu</property>
|
667
|
+
<attributes>
|
668
|
+
<attribute name="weight" value="bold"/>
|
669
|
+
</attributes>
|
670
|
+
</object>
|
671
|
+
<packing>
|
672
|
+
<property name="left_attach">0</property>
|
673
|
+
<property name="top_attach">30</property>
|
674
|
+
<property name="width">3</property>
|
675
|
+
<property name="height">1</property>
|
676
|
+
</packing>
|
677
|
+
</child>
|
678
|
+
<child>
|
679
|
+
<object class="GtkLabel" id="label22">
|
680
|
+
<property name="visible">True</property>
|
681
|
+
<property name="can_focus">False</property>
|
682
|
+
<property name="halign">start</property>
|
683
|
+
<property name="margin_left">45</property>
|
684
|
+
<property name="ypad">10</property>
|
685
|
+
<property name="label" translatable="yes">Supposons que l'île avec l'indice 6 est connectée à l'île avec l'indice 1. Cela laisse cinq ponts,
|
686
|
+
ce qui signifie qu'il doit y avoir au moins un pont connecté aux îles A, B et C.
|
687
|
+
Supposons maintenant l'île avec l'indice 6 n'est pas connecté à l'île avec l'indice 1.
|
688
|
+
Dans ce cas, exactement deux ponts doivent être connectés aux îles A, B et C.
|
689
|
+
Donc, que l'île avec l'indice 6 soit connectée ou non à l'île avec l'indice 1 , il doit y avoir au moins
|
690
|
+
un pont connecté aux îles A, B et C.</property>
|
691
|
+
</object>
|
692
|
+
<packing>
|
693
|
+
<property name="left_attach">0</property>
|
694
|
+
<property name="top_attach">31</property>
|
695
|
+
<property name="width">3</property>
|
696
|
+
<property name="height">1</property>
|
697
|
+
</packing>
|
698
|
+
</child>
|
699
|
+
<child>
|
700
|
+
<object class="GtkGrid" id="grid7">
|
701
|
+
<property name="visible">True</property>
|
702
|
+
<property name="can_focus">False</property>
|
703
|
+
<property name="column_homogeneous">True</property>
|
704
|
+
<child>
|
705
|
+
<object class="GtkImage" id="image11">
|
706
|
+
<property name="visible">True</property>
|
707
|
+
<property name="can_focus">False</property>
|
708
|
+
<property name="pixbuf">images/ex251.png</property>
|
709
|
+
</object>
|
710
|
+
<packing>
|
711
|
+
<property name="left_attach">0</property>
|
712
|
+
<property name="top_attach">0</property>
|
713
|
+
<property name="width">1</property>
|
714
|
+
<property name="height">1</property>
|
715
|
+
</packing>
|
716
|
+
</child>
|
717
|
+
<child>
|
718
|
+
<object class="GtkImage" id="image12">
|
719
|
+
<property name="visible">True</property>
|
720
|
+
<property name="can_focus">False</property>
|
721
|
+
<property name="pixbuf">images/ex252.png</property>
|
722
|
+
</object>
|
723
|
+
<packing>
|
724
|
+
<property name="left_attach">1</property>
|
725
|
+
<property name="top_attach">0</property>
|
726
|
+
<property name="width">1</property>
|
727
|
+
<property name="height">1</property>
|
728
|
+
</packing>
|
729
|
+
</child>
|
730
|
+
</object>
|
731
|
+
<packing>
|
732
|
+
<property name="left_attach">0</property>
|
733
|
+
<property name="top_attach">32</property>
|
734
|
+
<property name="width">3</property>
|
735
|
+
<property name="height">1</property>
|
736
|
+
</packing>
|
737
|
+
</child>
|
738
|
+
<child>
|
739
|
+
<object class="GtkLabel" id="label23">
|
740
|
+
<property name="visible">True</property>
|
741
|
+
<property name="can_focus">False</property>
|
742
|
+
<property name="halign">start</property>
|
743
|
+
<property name="margin_left">15</property>
|
744
|
+
<property name="margin_top">45</property>
|
745
|
+
<property name="margin_bottom">5</property>
|
746
|
+
<property name="label" translatable="yes">Techniques d'isolement</property>
|
747
|
+
<attributes>
|
748
|
+
<attribute name="font-desc" value="Viner Hand ITC 17"/>
|
749
|
+
</attributes>
|
750
|
+
</object>
|
751
|
+
<packing>
|
752
|
+
<property name="left_attach">0</property>
|
753
|
+
<property name="top_attach">33</property>
|
754
|
+
<property name="width">3</property>
|
755
|
+
<property name="height">1</property>
|
756
|
+
</packing>
|
757
|
+
</child>
|
758
|
+
<child>
|
759
|
+
<object class="GtkLabel" id="label25">
|
760
|
+
<property name="visible">True</property>
|
761
|
+
<property name="can_focus">False</property>
|
762
|
+
<property name="halign">start</property>
|
763
|
+
<property name="margin_left">45</property>
|
764
|
+
<property name="ypad">10</property>
|
765
|
+
<property name="label" translatable="yes">Regardons l'îlot du bas avec l'indice 1 dans la colonne de droite. Si nous le connectons à l'autre île
|
766
|
+
avec l'indice 1 comme indiqué dans le diagramme de gauche, les deux îles deviendront un segment
|
767
|
+
isolé qui n'est pas autorisé selon les règles de Hashi. La seule autre possibilité est donc de le connecter
|
768
|
+
à l'îlot A. Pour la même raison, l'îlot avec l'indice 2 dans le coin inférieur gauche ne peut pas être connecté
|
769
|
+
avec les deux ponts à l'îlot à sa droite comme le montre le schéma de gauche.
|
770
|
+
Cela signifie qu'au moins un pont doit être connecté de l'île dans le coin inférieur gauche à l'île B.</property>
|
771
|
+
</object>
|
772
|
+
<packing>
|
773
|
+
<property name="left_attach">0</property>
|
774
|
+
<property name="top_attach">36</property>
|
775
|
+
<property name="width">3</property>
|
776
|
+
<property name="height">1</property>
|
777
|
+
</packing>
|
778
|
+
</child>
|
779
|
+
<child>
|
780
|
+
<object class="GtkGrid" id="grid8">
|
781
|
+
<property name="visible">True</property>
|
782
|
+
<property name="can_focus">False</property>
|
783
|
+
<property name="column_homogeneous">True</property>
|
784
|
+
<child>
|
785
|
+
<object class="GtkImage" id="image13">
|
786
|
+
<property name="visible">True</property>
|
787
|
+
<property name="can_focus">False</property>
|
788
|
+
<property name="pixbuf">images/ex311.png</property>
|
789
|
+
</object>
|
790
|
+
<packing>
|
791
|
+
<property name="left_attach">0</property>
|
792
|
+
<property name="top_attach">0</property>
|
793
|
+
<property name="width">1</property>
|
794
|
+
<property name="height">1</property>
|
795
|
+
</packing>
|
796
|
+
</child>
|
797
|
+
<child>
|
798
|
+
<object class="GtkImage" id="image14">
|
799
|
+
<property name="visible">True</property>
|
800
|
+
<property name="can_focus">False</property>
|
801
|
+
<property name="pixbuf">images/ex312.png</property>
|
802
|
+
</object>
|
803
|
+
<packing>
|
804
|
+
<property name="left_attach">1</property>
|
805
|
+
<property name="top_attach">0</property>
|
806
|
+
<property name="width">1</property>
|
807
|
+
<property name="height">1</property>
|
808
|
+
</packing>
|
809
|
+
</child>
|
810
|
+
</object>
|
811
|
+
<packing>
|
812
|
+
<property name="left_attach">0</property>
|
813
|
+
<property name="top_attach">37</property>
|
814
|
+
<property name="width">3</property>
|
815
|
+
<property name="height">1</property>
|
816
|
+
</packing>
|
817
|
+
</child>
|
818
|
+
<child>
|
819
|
+
<object class="GtkLabel" id="label26">
|
820
|
+
<property name="visible">True</property>
|
821
|
+
<property name="can_focus">False</property>
|
822
|
+
<property name="halign">start</property>
|
823
|
+
<property name="margin_left">30</property>
|
824
|
+
<property name="ypad">10</property>
|
825
|
+
<property name="label" translatable="yes">2 - Isolement d'un segment à trois îles</property>
|
826
|
+
<attributes>
|
827
|
+
<attribute name="weight" value="bold"/>
|
828
|
+
</attributes>
|
829
|
+
</object>
|
830
|
+
<packing>
|
831
|
+
<property name="left_attach">0</property>
|
832
|
+
<property name="top_attach">38</property>
|
833
|
+
<property name="width">3</property>
|
834
|
+
<property name="height">1</property>
|
835
|
+
</packing>
|
836
|
+
</child>
|
837
|
+
<child>
|
838
|
+
<object class="GtkLabel" id="label27">
|
839
|
+
<property name="visible">True</property>
|
840
|
+
<property name="can_focus">False</property>
|
841
|
+
<property name="halign">start</property>
|
842
|
+
<property name="margin_left">45</property>
|
843
|
+
<property name="ypad">10</property>
|
844
|
+
<property name="label" translatable="yes">La technique ci-dessus peut être étendue à des segments avec trois îles. L'îlot avec l'indice 2 dans la rangée
|
845
|
+
du bas ne peut pas être connecté avec deux ponts comme indiqué dans le diagramme de gauche car il
|
846
|
+
deviendrait alors un segment 1-2-1 isolé. Cela signifie qu'il doit y avoir au moins un pont vers l'île A.
|
847
|
+
De même, l'île avec l'indice 3 dans la colonne de gauche ne peut pas être connectée avec trois ponts comme
|
848
|
+
indiqué dans le schéma de gauche car elle deviendrait alors un segment 1-3-2 isolé.
|
849
|
+
Cela signifie qu'il doit y avoir au moins un pont vers l'île B.</property>
|
850
|
+
</object>
|
851
|
+
<packing>
|
852
|
+
<property name="left_attach">0</property>
|
853
|
+
<property name="top_attach">39</property>
|
854
|
+
<property name="width">3</property>
|
855
|
+
<property name="height">1</property>
|
856
|
+
</packing>
|
857
|
+
</child>
|
858
|
+
<child>
|
859
|
+
<object class="GtkGrid" id="grid9">
|
860
|
+
<property name="visible">True</property>
|
861
|
+
<property name="can_focus">False</property>
|
862
|
+
<property name="column_homogeneous">True</property>
|
863
|
+
<child>
|
864
|
+
<object class="GtkImage" id="image15">
|
865
|
+
<property name="visible">True</property>
|
866
|
+
<property name="can_focus">False</property>
|
867
|
+
<property name="pixbuf">images/ex321.png</property>
|
868
|
+
</object>
|
869
|
+
<packing>
|
870
|
+
<property name="left_attach">0</property>
|
871
|
+
<property name="top_attach">0</property>
|
872
|
+
<property name="width">1</property>
|
873
|
+
<property name="height">1</property>
|
874
|
+
</packing>
|
875
|
+
</child>
|
876
|
+
<child>
|
877
|
+
<object class="GtkImage" id="image16">
|
878
|
+
<property name="visible">True</property>
|
879
|
+
<property name="can_focus">False</property>
|
880
|
+
<property name="pixbuf">images/ex322.png</property>
|
881
|
+
</object>
|
882
|
+
<packing>
|
883
|
+
<property name="left_attach">1</property>
|
884
|
+
<property name="top_attach">0</property>
|
885
|
+
<property name="width">1</property>
|
886
|
+
<property name="height">1</property>
|
887
|
+
</packing>
|
888
|
+
</child>
|
889
|
+
</object>
|
890
|
+
<packing>
|
891
|
+
<property name="left_attach">0</property>
|
892
|
+
<property name="top_attach">40</property>
|
893
|
+
<property name="width">3</property>
|
894
|
+
<property name="height">1</property>
|
895
|
+
</packing>
|
896
|
+
</child>
|
897
|
+
<child>
|
898
|
+
<object class="GtkLabel" id="label28">
|
899
|
+
<property name="visible">True</property>
|
900
|
+
<property name="can_focus">False</property>
|
901
|
+
<property name="halign">start</property>
|
902
|
+
<property name="margin_left">30</property>
|
903
|
+
<property name="ypad">10</property>
|
904
|
+
<property name="label" translatable="yes">3 - Isolement lorsqu'un segement se connecte à un îlot</property>
|
905
|
+
<attributes>
|
906
|
+
<attribute name="weight" value="bold"/>
|
907
|
+
</attributes>
|
908
|
+
</object>
|
909
|
+
<packing>
|
910
|
+
<property name="left_attach">0</property>
|
911
|
+
<property name="top_attach">41</property>
|
912
|
+
<property name="width">3</property>
|
913
|
+
<property name="height">1</property>
|
914
|
+
</packing>
|
915
|
+
</child>
|
916
|
+
<child>
|
917
|
+
<object class="GtkLabel" id="label29">
|
918
|
+
<property name="visible">True</property>
|
919
|
+
<property name="can_focus">False</property>
|
920
|
+
<property name="halign">start</property>
|
921
|
+
<property name="margin_left">45</property>
|
922
|
+
<property name="ypad">10</property>
|
923
|
+
<property name="label" translatable="yes">Parfois, des segments d'îles beaucoup plus longs peuvent devenir isolés, créant des situations logiques plus
|
924
|
+
difficiles à trouver et plus intéressantes à résoudre. Regardons l'exemple dans le diagramme de gauche.
|
925
|
+
Ce que nous voyons est un segment composé de sept îles, où six des îles sont terminées et seule l'île avec
|
926
|
+
l'indice 3 dans la rangée supérieure a un pont manquant. Si nous connectons ce pont à l'île dans le coin supérieur
|
927
|
+
gauche selon la ligne rouge, nous nous retrouverons avec un segment isolé.
|
928
|
+
Par conséquent, ce pont doit être connecté à l'îlot avec l'indice 5 comme indiqué dans le schéma à droite.</property>
|
929
|
+
</object>
|
930
|
+
<packing>
|
931
|
+
<property name="left_attach">0</property>
|
932
|
+
<property name="top_attach">42</property>
|
933
|
+
<property name="width">3</property>
|
934
|
+
<property name="height">1</property>
|
935
|
+
</packing>
|
936
|
+
</child>
|
937
|
+
<child>
|
938
|
+
<object class="GtkGrid" id="grid10">
|
939
|
+
<property name="visible">True</property>
|
940
|
+
<property name="can_focus">False</property>
|
941
|
+
<property name="column_homogeneous">True</property>
|
942
|
+
<child>
|
943
|
+
<object class="GtkImage" id="image17">
|
944
|
+
<property name="visible">True</property>
|
945
|
+
<property name="can_focus">False</property>
|
946
|
+
<property name="pixbuf">images/ex331.png</property>
|
947
|
+
</object>
|
948
|
+
<packing>
|
949
|
+
<property name="left_attach">0</property>
|
950
|
+
<property name="top_attach">0</property>
|
951
|
+
<property name="width">1</property>
|
952
|
+
<property name="height">1</property>
|
953
|
+
</packing>
|
954
|
+
</child>
|
955
|
+
<child>
|
956
|
+
<object class="GtkImage" id="image18">
|
957
|
+
<property name="visible">True</property>
|
958
|
+
<property name="can_focus">False</property>
|
959
|
+
<property name="pixbuf">images/ex332.png</property>
|
960
|
+
</object>
|
961
|
+
<packing>
|
962
|
+
<property name="left_attach">1</property>
|
963
|
+
<property name="top_attach">0</property>
|
964
|
+
<property name="width">1</property>
|
965
|
+
<property name="height">1</property>
|
966
|
+
</packing>
|
967
|
+
</child>
|
968
|
+
</object>
|
969
|
+
<packing>
|
970
|
+
<property name="left_attach">0</property>
|
971
|
+
<property name="top_attach">43</property>
|
972
|
+
<property name="width">3</property>
|
973
|
+
<property name="height">1</property>
|
974
|
+
</packing>
|
975
|
+
</child>
|
976
|
+
<child>
|
977
|
+
<object class="GtkLabel" id="label30">
|
978
|
+
<property name="visible">True</property>
|
979
|
+
<property name="can_focus">False</property>
|
980
|
+
<property name="halign">start</property>
|
981
|
+
<property name="margin_left">30</property>
|
982
|
+
<property name="ypad">10</property>
|
983
|
+
<property name="label" translatable="yes">4 - Isolement lorsqu'un segment se connecte à un autre segment</property>
|
984
|
+
<attributes>
|
985
|
+
<attribute name="weight" value="bold"/>
|
986
|
+
</attributes>
|
987
|
+
</object>
|
988
|
+
<packing>
|
989
|
+
<property name="left_attach">0</property>
|
990
|
+
<property name="top_attach">44</property>
|
991
|
+
<property name="width">3</property>
|
992
|
+
<property name="height">1</property>
|
993
|
+
</packing>
|
994
|
+
</child>
|
995
|
+
<child>
|
996
|
+
<object class="GtkLabel" id="label31">
|
997
|
+
<property name="visible">True</property>
|
998
|
+
<property name="can_focus">False</property>
|
999
|
+
<property name="halign">start</property>
|
1000
|
+
<property name="margin_left">45</property>
|
1001
|
+
<property name="ypad">10</property>
|
1002
|
+
<property name="label" translatable="yes">Dans le diagramme de gauche, nous avons deux segments, l'un composé de quatre îles où toutes les îles
|
1003
|
+
sont terminées sauf l'île avec l'indice 6, et l'autre composé de huit îles où toutes les îles sont également
|
1004
|
+
terminées sauf l'île avec l'indice 3. Dans les deux segments, il manque exactement deux ponts aux îles inachevées.
|
1005
|
+
Maintenant, si nous devions connecter deux ponts entre ces deux segments selon les lignes rouges,
|
1006
|
+
nous nous retrouverons avec un long segment isolé. Par conséquent, nous pouvons déduire qu'au moins un pont
|
1007
|
+
doit être connecté à l'îlot supérieur gauche, comme indiqué dans le diagramme de droite.</property>
|
1008
|
+
</object>
|
1009
|
+
<packing>
|
1010
|
+
<property name="left_attach">0</property>
|
1011
|
+
<property name="top_attach">45</property>
|
1012
|
+
<property name="width">3</property>
|
1013
|
+
<property name="height">1</property>
|
1014
|
+
</packing>
|
1015
|
+
</child>
|
1016
|
+
<child>
|
1017
|
+
<object class="GtkGrid" id="grid11">
|
1018
|
+
<property name="visible">True</property>
|
1019
|
+
<property name="can_focus">False</property>
|
1020
|
+
<property name="column_homogeneous">True</property>
|
1021
|
+
<child>
|
1022
|
+
<object class="GtkImage" id="image19">
|
1023
|
+
<property name="visible">True</property>
|
1024
|
+
<property name="can_focus">False</property>
|
1025
|
+
<property name="pixbuf">images/ex341.png</property>
|
1026
|
+
</object>
|
1027
|
+
<packing>
|
1028
|
+
<property name="left_attach">0</property>
|
1029
|
+
<property name="top_attach">0</property>
|
1030
|
+
<property name="width">1</property>
|
1031
|
+
<property name="height">1</property>
|
1032
|
+
</packing>
|
1033
|
+
</child>
|
1034
|
+
<child>
|
1035
|
+
<object class="GtkImage" id="image20">
|
1036
|
+
<property name="visible">True</property>
|
1037
|
+
<property name="can_focus">False</property>
|
1038
|
+
<property name="pixbuf">images/ex342.png</property>
|
1039
|
+
</object>
|
1040
|
+
<packing>
|
1041
|
+
<property name="left_attach">1</property>
|
1042
|
+
<property name="top_attach">0</property>
|
1043
|
+
<property name="width">1</property>
|
1044
|
+
<property name="height">1</property>
|
1045
|
+
</packing>
|
1046
|
+
</child>
|
1047
|
+
</object>
|
1048
|
+
<packing>
|
1049
|
+
<property name="left_attach">0</property>
|
1050
|
+
<property name="top_attach">46</property>
|
1051
|
+
<property name="width">3</property>
|
1052
|
+
<property name="height">1</property>
|
1053
|
+
</packing>
|
1054
|
+
</child>
|
1055
|
+
<child>
|
1056
|
+
<object class="GtkLabel" id="label32">
|
1057
|
+
<property name="visible">True</property>
|
1058
|
+
<property name="can_focus">False</property>
|
1059
|
+
<property name="halign">start</property>
|
1060
|
+
<property name="margin_left">15</property>
|
1061
|
+
<property name="margin_top">45</property>
|
1062
|
+
<property name="margin_bottom">5</property>
|
1063
|
+
<property name="label" translatable="yes">Techniques avancées</property>
|
1064
|
+
<attributes>
|
1065
|
+
<attribute name="font-desc" value="Viner Hand ITC 18"/>
|
1066
|
+
</attributes>
|
1067
|
+
</object>
|
1068
|
+
<packing>
|
1069
|
+
<property name="left_attach">0</property>
|
1070
|
+
<property name="top_attach">47</property>
|
1071
|
+
<property name="width">3</property>
|
1072
|
+
<property name="height">1</property>
|
1073
|
+
</packing>
|
1074
|
+
</child>
|
1075
|
+
<child>
|
1076
|
+
<object class="GtkLabel" id="label24">
|
1077
|
+
<property name="visible">True</property>
|
1078
|
+
<property name="can_focus">False</property>
|
1079
|
+
<property name="halign">start</property>
|
1080
|
+
<property name="margin_left">30</property>
|
1081
|
+
<property name="label" translatable="yes">1 - Isolement d'un segment à deux îles</property>
|
1082
|
+
<attributes>
|
1083
|
+
<attribute name="weight" value="bold"/>
|
1084
|
+
</attributes>
|
1085
|
+
</object>
|
1086
|
+
<packing>
|
1087
|
+
<property name="left_attach">0</property>
|
1088
|
+
<property name="top_attach">35</property>
|
1089
|
+
<property name="width">3</property>
|
1090
|
+
<property name="height">1</property>
|
1091
|
+
</packing>
|
1092
|
+
</child>
|
1093
|
+
<child>
|
1094
|
+
<object class="GtkLabel" id="label33">
|
1095
|
+
<property name="visible">True</property>
|
1096
|
+
<property name="can_focus">False</property>
|
1097
|
+
<property name="margin_left">15</property>
|
1098
|
+
<property name="xalign">0.25</property>
|
1099
|
+
<property name="ypad">10</property>
|
1100
|
+
<property name="label" translatable="yes">L'une des règles de Hashi stipule que tous les ponts sont interconnectés permettant le passage d'une île à l'autre.
|
1101
|
+
Cette règle, qui est essentielle dans tous les casse-tête Hashi, sauf les plus simples, conduit à des situations logiques
|
1102
|
+
très intéressantes sans lesquelles les casse-tête ne peuvent pas être résolus.
|
1103
|
+
Voici quelques façons d'utiliser les techniques d'isolement:</property>
|
1104
|
+
</object>
|
1105
|
+
<packing>
|
1106
|
+
<property name="left_attach">0</property>
|
1107
|
+
<property name="top_attach">34</property>
|
1108
|
+
<property name="width">3</property>
|
1109
|
+
<property name="height">1</property>
|
1110
|
+
</packing>
|
1111
|
+
</child>
|
1112
|
+
<child>
|
1113
|
+
<object class="GtkLabel" id="label34">
|
1114
|
+
<property name="visible">True</property>
|
1115
|
+
<property name="can_focus">False</property>
|
1116
|
+
<property name="xalign">0.25</property>
|
1117
|
+
<property name="ypad">10</property>
|
1118
|
+
<property name="label" translatable="yes">Les étapes suivantes utilisent des techniques de base, où nous ne pouvons pas toujours terminer tous les ponts
|
1119
|
+
connectés à une certaine île, mais nous pouvons prendre une décision définitive dans quelles directions un ou
|
1120
|
+
plusieurs ponts sont nécessaires. Voici quelques façons d'utiliser les techniques de base:</property>
|
1121
|
+
</object>
|
1122
|
+
<packing>
|
1123
|
+
<property name="left_attach">0</property>
|
1124
|
+
<property name="top_attach">17</property>
|
1125
|
+
<property name="width">3</property>
|
1126
|
+
<property name="height">1</property>
|
1127
|
+
</packing>
|
1128
|
+
</child>
|
1129
|
+
<child>
|
1130
|
+
<object class="GtkLabel" id="label35">
|
1131
|
+
<property name="visible">True</property>
|
1132
|
+
<property name="can_focus">False</property>
|
1133
|
+
<property name="xalign">0.25</property>
|
1134
|
+
<property name="ypad">10</property>
|
1135
|
+
<property name="label" translatable="yes">La plupart des puzzles Hashi, en particulier les plus faciles, contiennent des techniques de démarrage évidentes
|
1136
|
+
à première vue. Ces situations se produisent lorsqu'une île a le nombre maximal de ponts qui lui est connecté.
|
1137
|
+
Dans certains des exemples suivants, il y a des îles sans indices. Cela signifie que les indices dans ces îles ne sont pas
|
1138
|
+
pertinents pour la technique de résolution à ce stade. Voici quelques façons d'utiliser les techniques de démarrage:</property>
|
1139
|
+
</object>
|
1140
|
+
<packing>
|
1141
|
+
<property name="left_attach">0</property>
|
1142
|
+
<property name="top_attach">12</property>
|
1143
|
+
<property name="width">3</property>
|
1144
|
+
<property name="height">1</property>
|
1145
|
+
</packing>
|
1146
|
+
</child>
|
1147
|
+
<child>
|
1148
|
+
<object class="GtkLabel" id="label36">
|
1149
|
+
<property name="visible">True</property>
|
1150
|
+
<property name="can_focus">False</property>
|
1151
|
+
<property name="halign">start</property>
|
1152
|
+
<property name="margin_left">30</property>
|
1153
|
+
<property name="ypad">10</property>
|
1154
|
+
<property name="label" translatable="yes">1 - Isoler un segment en bloquant un pont</property>
|
1155
|
+
<attributes>
|
1156
|
+
<attribute name="weight" value="bold"/>
|
1157
|
+
</attributes>
|
1158
|
+
</object>
|
1159
|
+
<packing>
|
1160
|
+
<property name="left_attach">0</property>
|
1161
|
+
<property name="top_attach">49</property>
|
1162
|
+
<property name="width">3</property>
|
1163
|
+
<property name="height">1</property>
|
1164
|
+
</packing>
|
1165
|
+
</child>
|
1166
|
+
<child>
|
1167
|
+
<object class="GtkLabel" id="label37">
|
1168
|
+
<property name="visible">True</property>
|
1169
|
+
<property name="can_focus">False</property>
|
1170
|
+
<property name="halign">start</property>
|
1171
|
+
<property name="margin_left">45</property>
|
1172
|
+
<property name="ypad">10</property>
|
1173
|
+
<property name="label" translatable="yes">Si nous supposons qu'aucun pont n'est connecté dans la direction du X rouge dans le diagramme de gauche,
|
1174
|
+
les cinq îles doivent être connectées selon le diagramme central créant un segment isolé.
|
1175
|
+
Par conséquent, il doit y avoir au moins un pont vers le haut, comme indiqué dans le diagramme de droite.</property>
|
1176
|
+
</object>
|
1177
|
+
<packing>
|
1178
|
+
<property name="left_attach">0</property>
|
1179
|
+
<property name="top_attach">50</property>
|
1180
|
+
<property name="width">3</property>
|
1181
|
+
<property name="height">1</property>
|
1182
|
+
</packing>
|
1183
|
+
</child>
|
1184
|
+
<child>
|
1185
|
+
<object class="GtkGrid" id="grid12">
|
1186
|
+
<property name="visible">True</property>
|
1187
|
+
<property name="can_focus">False</property>
|
1188
|
+
<property name="column_homogeneous">True</property>
|
1189
|
+
<child>
|
1190
|
+
<object class="GtkImage" id="image21">
|
1191
|
+
<property name="visible">True</property>
|
1192
|
+
<property name="can_focus">False</property>
|
1193
|
+
<property name="pixbuf">images/ex411.png</property>
|
1194
|
+
</object>
|
1195
|
+
<packing>
|
1196
|
+
<property name="left_attach">0</property>
|
1197
|
+
<property name="top_attach">0</property>
|
1198
|
+
<property name="width">1</property>
|
1199
|
+
<property name="height">1</property>
|
1200
|
+
</packing>
|
1201
|
+
</child>
|
1202
|
+
<child>
|
1203
|
+
<object class="GtkImage" id="image22">
|
1204
|
+
<property name="visible">True</property>
|
1205
|
+
<property name="can_focus">False</property>
|
1206
|
+
<property name="pixbuf">images/ex412.png</property>
|
1207
|
+
</object>
|
1208
|
+
<packing>
|
1209
|
+
<property name="left_attach">1</property>
|
1210
|
+
<property name="top_attach">0</property>
|
1211
|
+
<property name="width">1</property>
|
1212
|
+
<property name="height">1</property>
|
1213
|
+
</packing>
|
1214
|
+
</child>
|
1215
|
+
<child>
|
1216
|
+
<object class="GtkImage" id="image29">
|
1217
|
+
<property name="visible">True</property>
|
1218
|
+
<property name="can_focus">False</property>
|
1219
|
+
<property name="pixbuf">images/ex413.png</property>
|
1220
|
+
</object>
|
1221
|
+
<packing>
|
1222
|
+
<property name="left_attach">2</property>
|
1223
|
+
<property name="top_attach">0</property>
|
1224
|
+
<property name="width">1</property>
|
1225
|
+
<property name="height">1</property>
|
1226
|
+
</packing>
|
1227
|
+
</child>
|
1228
|
+
</object>
|
1229
|
+
<packing>
|
1230
|
+
<property name="left_attach">0</property>
|
1231
|
+
<property name="top_attach">51</property>
|
1232
|
+
<property name="width">3</property>
|
1233
|
+
<property name="height">1</property>
|
1234
|
+
</packing>
|
1235
|
+
</child>
|
1236
|
+
<child>
|
1237
|
+
<object class="GtkLabel" id="label38">
|
1238
|
+
<property name="visible">True</property>
|
1239
|
+
<property name="can_focus">False</property>
|
1240
|
+
<property name="halign">start</property>
|
1241
|
+
<property name="margin_left">30</property>
|
1242
|
+
<property name="ypad">10</property>
|
1243
|
+
<property name="label" translatable="yes">2 - Isoler un segment en ajoutant un pont</property>
|
1244
|
+
<attributes>
|
1245
|
+
<attribute name="weight" value="bold"/>
|
1246
|
+
</attributes>
|
1247
|
+
</object>
|
1248
|
+
<packing>
|
1249
|
+
<property name="left_attach">0</property>
|
1250
|
+
<property name="top_attach">52</property>
|
1251
|
+
<property name="width">3</property>
|
1252
|
+
<property name="height">1</property>
|
1253
|
+
</packing>
|
1254
|
+
</child>
|
1255
|
+
<child>
|
1256
|
+
<object class="GtkLabel" id="label39">
|
1257
|
+
<property name="visible">True</property>
|
1258
|
+
<property name="can_focus">False</property>
|
1259
|
+
<property name="halign">start</property>
|
1260
|
+
<property name="margin_left">45</property>
|
1261
|
+
<property name="ypad">10</property>
|
1262
|
+
<property name="label" translatable="yes">Regardons la ligne supérieure du diagramme de gauche montrant une étape d'une solution de puzzle Hashi.
|
1263
|
+
Si nous supposons que le deuxième pont de l'île avec l'indice 2 est connecté à l'île à sa droite, alors le segment
|
1264
|
+
de six îles sera isolé comme indiqué dans le diagramme central. Par conséquent, cet îlot doit être connecté comme
|
1265
|
+
indiqué dans le schéma à droite. De même, l'îlot dans le coin inférieur gauche doit être connecté à l'îlot supérieur.</property>
|
1266
|
+
</object>
|
1267
|
+
<packing>
|
1268
|
+
<property name="left_attach">0</property>
|
1269
|
+
<property name="top_attach">53</property>
|
1270
|
+
<property name="width">3</property>
|
1271
|
+
<property name="height">1</property>
|
1272
|
+
</packing>
|
1273
|
+
</child>
|
1274
|
+
<child>
|
1275
|
+
<object class="GtkGrid" id="grid13">
|
1276
|
+
<property name="visible">True</property>
|
1277
|
+
<property name="can_focus">False</property>
|
1278
|
+
<property name="column_homogeneous">True</property>
|
1279
|
+
<child>
|
1280
|
+
<object class="GtkImage" id="image23">
|
1281
|
+
<property name="visible">True</property>
|
1282
|
+
<property name="can_focus">False</property>
|
1283
|
+
<property name="pixbuf">images/ex421.png</property>
|
1284
|
+
</object>
|
1285
|
+
<packing>
|
1286
|
+
<property name="left_attach">0</property>
|
1287
|
+
<property name="top_attach">0</property>
|
1288
|
+
<property name="width">1</property>
|
1289
|
+
<property name="height">1</property>
|
1290
|
+
</packing>
|
1291
|
+
</child>
|
1292
|
+
<child>
|
1293
|
+
<object class="GtkImage" id="image24">
|
1294
|
+
<property name="visible">True</property>
|
1295
|
+
<property name="can_focus">False</property>
|
1296
|
+
<property name="pixbuf">images/ex422.png</property>
|
1297
|
+
</object>
|
1298
|
+
<packing>
|
1299
|
+
<property name="left_attach">1</property>
|
1300
|
+
<property name="top_attach">0</property>
|
1301
|
+
<property name="width">1</property>
|
1302
|
+
<property name="height">1</property>
|
1303
|
+
</packing>
|
1304
|
+
</child>
|
1305
|
+
<child>
|
1306
|
+
<object class="GtkImage" id="image30">
|
1307
|
+
<property name="visible">True</property>
|
1308
|
+
<property name="can_focus">False</property>
|
1309
|
+
<property name="pixbuf">images/ex423.png</property>
|
1310
|
+
</object>
|
1311
|
+
<packing>
|
1312
|
+
<property name="left_attach">2</property>
|
1313
|
+
<property name="top_attach">0</property>
|
1314
|
+
<property name="width">1</property>
|
1315
|
+
<property name="height">1</property>
|
1316
|
+
</packing>
|
1317
|
+
</child>
|
1318
|
+
</object>
|
1319
|
+
<packing>
|
1320
|
+
<property name="left_attach">0</property>
|
1321
|
+
<property name="top_attach">54</property>
|
1322
|
+
<property name="width">3</property>
|
1323
|
+
<property name="height">1</property>
|
1324
|
+
</packing>
|
1325
|
+
</child>
|
1326
|
+
<child>
|
1327
|
+
<object class="GtkLabel" id="label40">
|
1328
|
+
<property name="visible">True</property>
|
1329
|
+
<property name="can_focus">False</property>
|
1330
|
+
<property name="halign">start</property>
|
1331
|
+
<property name="margin_left">30</property>
|
1332
|
+
<property name="ypad">10</property>
|
1333
|
+
<property name="label" translatable="yes">3 - Isoler une île en ajoutant un pont</property>
|
1334
|
+
<attributes>
|
1335
|
+
<attribute name="weight" value="bold"/>
|
1336
|
+
</attributes>
|
1337
|
+
</object>
|
1338
|
+
<packing>
|
1339
|
+
<property name="left_attach">0</property>
|
1340
|
+
<property name="top_attach">55</property>
|
1341
|
+
<property name="width">3</property>
|
1342
|
+
<property name="height">1</property>
|
1343
|
+
</packing>
|
1344
|
+
</child>
|
1345
|
+
<child>
|
1346
|
+
<object class="GtkLabel" id="label41">
|
1347
|
+
<property name="visible">True</property>
|
1348
|
+
<property name="can_focus">False</property>
|
1349
|
+
<property name="halign">start</property>
|
1350
|
+
<property name="margin_left">45</property>
|
1351
|
+
<property name="ypad">10</property>
|
1352
|
+
<property name="label" translatable="yes">Regardons l'île avec l'indice 2 dans le diagramme de gauche. Si nous supposons qu'il n'y a pas de pont dans
|
1353
|
+
la direction du X rouge, les deux ponts doivent être connectés comme indiqué dans le diagramme central.
|
1354
|
+
Cependant, cela entraînera l'îlot avec l'indice 1 à devenir isolé car le seul autre îlot auquel il peut se connecter
|
1355
|
+
est déjà terminé. Il doit donc y avoir au moins un pont descendant comme indiqué sur le schéma de droite.</property>
|
1356
|
+
</object>
|
1357
|
+
<packing>
|
1358
|
+
<property name="left_attach">0</property>
|
1359
|
+
<property name="top_attach">56</property>
|
1360
|
+
<property name="width">3</property>
|
1361
|
+
<property name="height">1</property>
|
1362
|
+
</packing>
|
1363
|
+
</child>
|
1364
|
+
<child>
|
1365
|
+
<object class="GtkGrid" id="grid14">
|
1366
|
+
<property name="visible">True</property>
|
1367
|
+
<property name="can_focus">False</property>
|
1368
|
+
<property name="column_homogeneous">True</property>
|
1369
|
+
<child>
|
1370
|
+
<object class="GtkImage" id="image25">
|
1371
|
+
<property name="visible">True</property>
|
1372
|
+
<property name="can_focus">False</property>
|
1373
|
+
<property name="pixbuf">images/ex431.png</property>
|
1374
|
+
</object>
|
1375
|
+
<packing>
|
1376
|
+
<property name="left_attach">0</property>
|
1377
|
+
<property name="top_attach">0</property>
|
1378
|
+
<property name="width">1</property>
|
1379
|
+
<property name="height">1</property>
|
1380
|
+
</packing>
|
1381
|
+
</child>
|
1382
|
+
<child>
|
1383
|
+
<object class="GtkImage" id="image26">
|
1384
|
+
<property name="visible">True</property>
|
1385
|
+
<property name="can_focus">False</property>
|
1386
|
+
<property name="pixbuf">images/ex432.png</property>
|
1387
|
+
</object>
|
1388
|
+
<packing>
|
1389
|
+
<property name="left_attach">1</property>
|
1390
|
+
<property name="top_attach">0</property>
|
1391
|
+
<property name="width">1</property>
|
1392
|
+
<property name="height">1</property>
|
1393
|
+
</packing>
|
1394
|
+
</child>
|
1395
|
+
<child>
|
1396
|
+
<object class="GtkImage" id="image31">
|
1397
|
+
<property name="visible">True</property>
|
1398
|
+
<property name="can_focus">False</property>
|
1399
|
+
<property name="pixbuf">images/ex433.png</property>
|
1400
|
+
</object>
|
1401
|
+
<packing>
|
1402
|
+
<property name="left_attach">2</property>
|
1403
|
+
<property name="top_attach">0</property>
|
1404
|
+
<property name="width">1</property>
|
1405
|
+
<property name="height">1</property>
|
1406
|
+
</packing>
|
1407
|
+
</child>
|
1408
|
+
</object>
|
1409
|
+
<packing>
|
1410
|
+
<property name="left_attach">0</property>
|
1411
|
+
<property name="top_attach">57</property>
|
1412
|
+
<property name="width">3</property>
|
1413
|
+
<property name="height">1</property>
|
1414
|
+
</packing>
|
1415
|
+
</child>
|
1416
|
+
<child>
|
1417
|
+
<object class="GtkLabel" id="label42">
|
1418
|
+
<property name="visible">True</property>
|
1419
|
+
<property name="can_focus">False</property>
|
1420
|
+
<property name="halign">start</property>
|
1421
|
+
<property name="margin_left">30</property>
|
1422
|
+
<property name="ypad">10</property>
|
1423
|
+
<property name="label" translatable="yes">4 -Création de conflits de connexion de ponts</property>
|
1424
|
+
<attributes>
|
1425
|
+
<attribute name="weight" value="bold"/>
|
1426
|
+
</attributes>
|
1427
|
+
</object>
|
1428
|
+
<packing>
|
1429
|
+
<property name="left_attach">0</property>
|
1430
|
+
<property name="top_attach">58</property>
|
1431
|
+
<property name="width">3</property>
|
1432
|
+
<property name="height">1</property>
|
1433
|
+
</packing>
|
1434
|
+
</child>
|
1435
|
+
<child>
|
1436
|
+
<object class="GtkLabel" id="label43">
|
1437
|
+
<property name="visible">True</property>
|
1438
|
+
<property name="can_focus">False</property>
|
1439
|
+
<property name="halign">start</property>
|
1440
|
+
<property name="margin_left">45</property>
|
1441
|
+
<property name="ypad">10</property>
|
1442
|
+
<property name="label" translatable="yes">L'îlot avec l'indice 1 dans la deuxième rangée peut être connecté dans deux directions.
|
1443
|
+
Supposons qu'il soit connecté à l'île à l'extrême droite comme le montre le schéma à gauche.
|
1444
|
+
Cela conduit à un segment de quatre îlots montré dans le diagramme central.
|
1445
|
+
Cependant, l'île avec l'indice 2 a toujours un pont non connecté créant un conflit!
|
1446
|
+
Par conséquent, l'îlot avec l'indice 1 dans la deuxième rangée doit être connecté à l'îlot en dessous,
|
1447
|
+
comme indiqué dans le schéma à droite.</property>
|
1448
|
+
</object>
|
1449
|
+
<packing>
|
1450
|
+
<property name="left_attach">0</property>
|
1451
|
+
<property name="top_attach">59</property>
|
1452
|
+
<property name="width">3</property>
|
1453
|
+
<property name="height">1</property>
|
1454
|
+
</packing>
|
1455
|
+
</child>
|
1456
|
+
<child>
|
1457
|
+
<object class="GtkGrid" id="grid15">
|
1458
|
+
<property name="visible">True</property>
|
1459
|
+
<property name="can_focus">False</property>
|
1460
|
+
<property name="column_homogeneous">True</property>
|
1461
|
+
<child>
|
1462
|
+
<object class="GtkImage" id="image27">
|
1463
|
+
<property name="visible">True</property>
|
1464
|
+
<property name="can_focus">False</property>
|
1465
|
+
<property name="pixbuf">images/ex441.png</property>
|
1466
|
+
</object>
|
1467
|
+
<packing>
|
1468
|
+
<property name="left_attach">0</property>
|
1469
|
+
<property name="top_attach">0</property>
|
1470
|
+
<property name="width">1</property>
|
1471
|
+
<property name="height">1</property>
|
1472
|
+
</packing>
|
1473
|
+
</child>
|
1474
|
+
<child>
|
1475
|
+
<object class="GtkImage" id="image28">
|
1476
|
+
<property name="visible">True</property>
|
1477
|
+
<property name="can_focus">False</property>
|
1478
|
+
<property name="pixbuf">images/ex442.png</property>
|
1479
|
+
</object>
|
1480
|
+
<packing>
|
1481
|
+
<property name="left_attach">1</property>
|
1482
|
+
<property name="top_attach">0</property>
|
1483
|
+
<property name="width">1</property>
|
1484
|
+
<property name="height">1</property>
|
1485
|
+
</packing>
|
1486
|
+
</child>
|
1487
|
+
<child>
|
1488
|
+
<object class="GtkImage" id="image32">
|
1489
|
+
<property name="visible">True</property>
|
1490
|
+
<property name="can_focus">False</property>
|
1491
|
+
<property name="pixbuf">images/ex442.png</property>
|
1492
|
+
</object>
|
1493
|
+
<packing>
|
1494
|
+
<property name="left_attach">2</property>
|
1495
|
+
<property name="top_attach">0</property>
|
1496
|
+
<property name="width">1</property>
|
1497
|
+
<property name="height">1</property>
|
1498
|
+
</packing>
|
1499
|
+
</child>
|
1500
|
+
</object>
|
1501
|
+
<packing>
|
1502
|
+
<property name="left_attach">0</property>
|
1503
|
+
<property name="top_attach">60</property>
|
1504
|
+
<property name="width">3</property>
|
1505
|
+
<property name="height">1</property>
|
1506
|
+
</packing>
|
1507
|
+
</child>
|
1508
|
+
<child>
|
1509
|
+
<object class="GtkLabel" id="label44">
|
1510
|
+
<property name="visible">True</property>
|
1511
|
+
<property name="can_focus">False</property>
|
1512
|
+
<property name="margin_left">15</property>
|
1513
|
+
<property name="xalign">0.25</property>
|
1514
|
+
<property name="ypad">10</property>
|
1515
|
+
<property name="label" translatable="yes">Les techniques décrites jusqu'ici ne suffiront pas à résoudre des énigmes difficiles. Pour cela, vous aurez besoin
|
1516
|
+
de techniques avancées pour élaborer de nombreuses situations logiques spéciales et intéressantes.
|
1517
|
+
La plupart des techniques avancées utilisent la récursivité, un processus d'anticipation pour faire une hypothèse
|
1518
|
+
et vérifier les conflits une ou deux étapes à l'avance. Bien que les résultats des techniques avancées puissent parfois
|
1519
|
+
être similaires à ceux des techniques précédentes, il y a une grande différence car les solveurs doivent regarder vers
|
1520
|
+
l'avant pour trouver le conflit ou la contradiction logique. Voici quelques exemples de techniques avancées pour résoudre
|
1521
|
+
des situations particulières. Vous en développerez beaucoup plus lorsque vous commencerez à résoudre vous-même
|
1522
|
+
des énigmes Hashi difficiles:</property>
|
1523
|
+
</object>
|
1524
|
+
<packing>
|
1525
|
+
<property name="left_attach">0</property>
|
1526
|
+
<property name="top_attach">48</property>
|
1527
|
+
<property name="width">3</property>
|
1528
|
+
<property name="height">1</property>
|
1529
|
+
</packing>
|
1530
|
+
</child>
|
1531
|
+
<child>
|
1532
|
+
<object class="GtkButton" id="btnQuitter">
|
1533
|
+
<property name="label" translatable="yes">Fermer la fenêtre</property>
|
1534
|
+
<property name="visible">True</property>
|
1535
|
+
<property name="can_focus">True</property>
|
1536
|
+
<property name="receives_default">True</property>
|
1537
|
+
<property name="halign">center</property>
|
1538
|
+
<property name="margin_top">15</property>
|
1539
|
+
<property name="margin_bottom">15</property>
|
1540
|
+
<property name="image">image33</property>
|
1541
|
+
<property name="relief">none</property>
|
1542
|
+
<property name="always_show_image">True</property>
|
1543
|
+
</object>
|
1544
|
+
<packing>
|
1545
|
+
<property name="left_attach">0</property>
|
1546
|
+
<property name="top_attach">61</property>
|
1547
|
+
<property name="width">3</property>
|
1548
|
+
<property name="height">1</property>
|
1549
|
+
</packing>
|
1550
|
+
</child>
|
1551
|
+
</object>
|
1552
|
+
</child>
|
1553
|
+
</object>
|
1554
|
+
</child>
|
1555
|
+
</object>
|
1556
|
+
</child>
|
1557
|
+
</object>
|
1558
|
+
</interface>
|