From 4ff1d635ca5251c1008e69a7aea94c4ad703c7b9 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 10 Jan 2021 12:11:01 +0000 Subject: Add correct copyright notices in files --- src/common/IntegerExtra.v | 19 +++++++++++++++++++ src/common/Maps.v | 19 +++++++++++++++++++ src/common/Monad.v | 18 ++++++++++++++++++ src/common/Statemonad.v | 18 ++++++++++++++++++ src/common/ZExtra.v | 19 +++++++++++++++++++ 5 files changed, 93 insertions(+) (limited to 'src/common') diff --git a/src/common/IntegerExtra.v b/src/common/IntegerExtra.v index 185f669..d36fcee 100644 --- a/src/common/IntegerExtra.v +++ b/src/common/IntegerExtra.v @@ -1,3 +1,22 @@ +(* + * Vericert: Verified high-level synthesis. + * Copyright (C) 2020-2021 Yann Herklotz + * 2020 James Pollard + * + * 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 3 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, see . + *) + Require Import BinInt. Require Import Lia. Require Import ZBinary. diff --git a/src/common/Maps.v b/src/common/Maps.v index b5a2fb2..696c9b8 100644 --- a/src/common/Maps.v +++ b/src/common/Maps.v @@ -1,3 +1,22 @@ +(* + * Vericert: Verified high-level synthesis. + * Copyright (C) 2020 Yann Herklotz + * 2020 James Pollard + * + * 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 3 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, see . + *) + From vericert Require Import Vericertlib. From compcert Require Export Maps. diff --git a/src/common/Monad.v b/src/common/Monad.v index 8517186..5e8385e 100644 --- a/src/common/Monad.v +++ b/src/common/Monad.v @@ -1,3 +1,21 @@ +(* + * Vericert: Verified high-level synthesis. + * Copyright (C) 2020 Yann Herklotz + * + * 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 3 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, see . + *) + From Coq Require Import Lists.List. Module Type Monad. diff --git a/src/common/Statemonad.v b/src/common/Statemonad.v index 2eada2f..16dcbbf 100644 --- a/src/common/Statemonad.v +++ b/src/common/Statemonad.v @@ -1,3 +1,21 @@ +(* + * Vericert: Verified high-level synthesis. + * Copyright (C) 2020 Yann Herklotz + * + * 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 3 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, see . + *) + From compcert Require Errors. From vericert Require Import Monad. From Coq Require Import Lists.List. diff --git a/src/common/ZExtra.v b/src/common/ZExtra.v index 5f9034e..62ca54d 100644 --- a/src/common/ZExtra.v +++ b/src/common/ZExtra.v @@ -1,3 +1,22 @@ +(* + * Vericert: Verified high-level synthesis. + * Copyright (C) 2020 Yann Herklotz + * 2020 James Pollard + * + * 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 3 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, see . + *) + Require Import Coq.ZArith.BinInt. Require Import Coq.micromega.Lia. Require Import Coq.ZArith.ZArith. -- cgit