Skip to content

Commit

Permalink
Added license text to code files
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewgthomas committed Feb 25, 2015
1 parent ace1552 commit 60df026
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 5 deletions.
21 changes: 20 additions & 1 deletion Optimal Birth Intervals/BackwardIteration.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks"
* Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
21 changes: 20 additions & 1 deletion Optimal Birth Intervals/BirthIntervals.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks"
* Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
21 changes: 20 additions & 1 deletion Optimal Birth Intervals/ForwardIteration.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks"
* Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
21 changes: 20 additions & 1 deletion Optimal Birth Intervals/PowerSet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks"
* Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
21 changes: 20 additions & 1 deletion Optimal Birth Intervals/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
using System;
/*
* Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks"
* Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down

0 comments on commit 60df026

Please sign in to comment.