agpl_1.0.0_b5da3320/obsolete/t013_atsp.adb

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
with Text_Io; use Text_Io;
with Ada.Exceptions; use Ada.Exceptions;

with Agpl.Gdk.Constants;
with Agpl.Gdk.Drawer;
with Agpl.Gdk.Drawer_Arc;
with Agpl.Gdk.Drawer_Figures;
with Agpl.Gdk.Drawer_Rectangle;
with Agpl.Gdk.Modal_Drawing_Area;
with Agpl.Gdk.Palette;

with Agpl.Optimization.Concorde;
use  Agpl.Optimization.Concorde;

with Gdk.Drawable; use Gdk.Drawable;

with Ada.Command_Line;
use  Ada.Command_Line;
with Ada.Numerics.Elementary_Functions; use Ada.Numerics.Elementary_Functions;
with Ada.Numerics.Float_Random; use Ada.Numerics.Float_Random;

with Gnat.Os_Lib;

--  ATSP solutions for a given number of cities:
--  Invoke with: <program> <cities> [seed]
--  Each city has random cost in either way.

procedure T013_atsp is

   package Colors renames Agpl.Gdk.Constants.Colors;
   package MDA renames Agpl.Gdk.Modal_Drawing_Area;

   procedure Usage is
   begin
      Put_Line ("Usage: <program> <cities> [random seed]");
   end Usage;

   N : Cities;

   R : Generator;

   type String_Access is access all String;

   Color_List : constant array (1 .. 4) of String_Access :=
                  (1 => new String'("red"),
                   2 => new String'("#00aa00"),
                   3 => new String'("#0000ff"),
                   4 => new String'("magenta"));

begin
   if Argument_Count < 1 then
      Usage;
      return;
   end if;

   if Argument_Count = 1 then
      Reset (R);
   else
      Reset (R, Integer'Value (Argument (2)));
   end if;

   N := Cities'Value (Argument (1));

   declare
      type City_Pos is record
         X, Y : Float;
      end record;

      City_Poses : array (1 .. N) of City_Pos;
      C : Cost_Matrix (1 .. N, 1 .. N);

   begin
      --  Fill random cities positions in coords <1 .. 100>
      for I in City_Poses'Range loop
         City_Poses (I).X := Random (R) * 100.0;
         City_Poses (I).Y := Random (R) * 100.0;
      end loop;

      --  Compute distances adding some random quantity in each sense
      for Row in C'Range loop
         for Col in C'Range (2) loop
            if Row = Col then
               C (Row, Col) := 0;
            else
               C (Row, Col) :=
                 Costs (Sqrt ((City_Poses (Row).X - City_Poses (Col).X) ** 2 +
                                (City_Poses (Row).Y - City_Poses (Col).Y) ** 2)) +
                 Costs (Random (R) * 10.0);
            end if;
         end loop;
      end loop;

      declare
         Sol : constant Result_Matrix := Solve_ATSP ((1 => 1), C);
      begin
         print_Problem (C);
         Print_Solution (C, Sol);

         --  Display graphically the solution:
         declare
            Area : MDA.Object;

            -------------------
            -- Draw_Solution --
            -------------------

            procedure Draw_Solution (Drawable : in Gdk_Drawable)
            is
               use Agpl.Gdk;
               use Agpl.Gdk.Palette;
               Pal  : aliased Palette.Object;
               Draw : Drawer.Object;
            begin
               Pal.Set_Drawable (Drawable);
               Draw.Set_Drawable (Drawable);

               Drawer.Draw_Begin (Draw);

               --  Draw border
               Drawer.Draw (Draw, Drawer_Rectangle.Create
                              (Get_Color (Pal, Colors.White),
                               0.0, 0.0, 100.0, 100.0, Fill => True));
               Drawer_Figures.Draw_Segment (0.0, 0.0, 0.0, 100.0,
                                            Get_Color (Pal, Colors.Black),
                                            Draw);
               Drawer_Figures.Draw_Segment (0.0, 100.0, 100.0, 100.0,
                                            Get_Color (Pal, Colors.Black),
                                            Draw);
               Drawer_Figures.Draw_Segment (100.0, 100.0, 100.0, 0.0,
                                            Get_Color (Pal, Colors.Black),
                                            Draw);
               Drawer_Figures.Draw_Segment (100.0, 0.0, 0.0, 0.0,
                                            Get_Color (Pal, Colors.Black),
                                            Draw);

               --  Draw cities
               for I in City_Poses'Range loop
                  Drawer.Draw (Draw, Drawer_Arc.Create_Circle
                                 (Get_Color (Pal, "#aaaaaa"),
                                  City_Poses (I).X, City_Poses (I).Y, 2.0,
                                  Fill => True));
               end loop;

               for I in 1 .. 1 loop
                  Drawer.Draw (Draw, Drawer_Arc.Create_Circle
                                 (Get_Color (Pal, Color_List (Integer (I)).all),
                                  City_Poses (1).X,
                                  City_Poses (1).Y,
                                  2.0,
                                  Fill => True));
               end loop;

               --  Draw tours
               for Salesman in Sol'Range loop
                  for City in Sol'First (2) .. Sol'Last (2) - 1 loop
                     Drawer_Figures.Draw_Segment
                       (City_Poses (Sol (Salesman, City)).X,
                        City_Poses (Sol (Salesman, City)).Y,
                        City_Poses (Sol (Salesman, City + 1)).X,
                        City_Poses (Sol (Salesman, City + 1)).Y,
                        Get_Color (Pal, Color_List (Integer (Salesman)).all),
                        Draw);
                  end loop;
                  Drawer_Figures.Draw_Segment
                    (City_Poses (Sol (Salesman, Sol'Last (2))).X,
                     City_Poses (Sol (Salesman, Sol'Last (2))).Y,
                     City_Poses (Sol (Salesman, Sol'First (2))).X,
                     City_Poses (Sol (Salesman, Sol'First (2))).Y,
                     Get_Color (Pal, Colors.Black), -- Draw in black the returning line
                     Draw);
               end loop;

               --  Show
               Drawer.Draw_End (Draw);
            end Draw_Solution;

         begin
            Area.Show (Draw_Solution'Access);
         end;
      end;
   end;
exception
   when No_Solution =>
      Put_Line ("NO VALID SOLUTION FOUND");
      raise;
   when E : others =>
      Put_Line ("Exception: " & Exception_Information (E));
end T013_atsp;