Skip to content

Commit 931d4ef

Browse files
authored
Merge pull request #11 from gap-packages/license
Add GPLv2 license
2 parents ca53477 + 1e465d3 commit 931d4ef

23 files changed

+539
-21
lines changed

LICENSE

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

lib/SubAut.gd

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#############################################################################
2-
##
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
6+
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W SubAut.gd Michael Albert,
513
#W Steve Linton,

lib/SubAut.gi

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#############################################################################
2-
##
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
6+
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W SubAut.gi Michael Albert,
513
#W Steve Linton,

lib/autGraphs.gd

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
#############################################################################
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
26
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
11+
##
12+
## You should have received a copy of the GNU General Public License
13+
## along with this program. If not, see <http://www.gnu.org/licenses/>.
314
##
415
#W autGraphs.gd Michael Albert,
516
#W Steve Linton,
@@ -59,4 +70,4 @@ DeclareGlobalFunction( "Seqstacks" );
5970
## Produces a token passing network containing a buffer of size n, followed
6071
## by a stack of size m.
6172
##
62-
DeclareGlobalFunction( "BufferAndStack" );
73+
DeclareGlobalFunction( "BufferAndStack" );

lib/autGraphs.gi

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#############################################################################
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
26
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W autGraphs.gi Michael Albert,
513
#W Steve Linton,
@@ -276,4 +284,4 @@ InstallGlobalFunction(BufferAndStack, function(n,m)
276284
gamma[n+m+2] := [];
277285

278286
return gamma;
279-
end );
287+
end );

lib/autStatistics.gd

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#############################################################################
2-
##
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
6+
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W autStatistics.gd Michael Albert,
513
#W Steve Linton,

lib/autStatistics.gi

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#############################################################################
2-
##
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
6+
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W autStatistics.gi Michael Albert,
513
#W Steve Linton,

lib/automata.gd

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#############################################################################
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
26
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W automata.gd Ruth Hoffmann
513
##
@@ -53,4 +61,4 @@ DeclareAttribute("PCMinimalAutomaton", IsAutomatonObj);
5361
##
5462
## Again we got rid of the Assertion
5563
##
56-
DeclareGlobalFunction( "PCReducedNFA" );
64+
DeclareGlobalFunction( "PCReducedNFA" );

lib/automata.gi

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#############################################################################
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
26
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W automata.gi Ruth Hoffmann
513
##

lib/basics.gd

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
################################################################################
2-
##
2+
## This program is free software: you can redistribute it and/or modify
3+
## it under the terms of the GNU General Public License as published by
4+
## the Free Software Foundation, either version 2 of the License, or
5+
## (at your option) any later version.
6+
##
7+
## This program is distributed in the hope that it will be useful,
8+
## but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
## GNU General Public License for more details.
311
##
412
#W basics.gd Michael Albert,
513
#W Steve Linton,

0 commit comments

Comments
 (0)