From 3addff470c8faeb6876c63575184caa0aa829e28 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 21 Jan 2021 22:18:50 +0000 Subject: Fix imports in Coq modules --- src/hls/HTLPargen.v | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'src/hls/HTLPargen.v') diff --git a/src/hls/HTLPargen.v b/src/hls/HTLPargen.v index 474dfef..70c0454 100644 --- a/src/hls/HTLPargen.v +++ b/src/hls/HTLPargen.v @@ -16,11 +16,21 @@ * along with this program. If not, see . *) -From compcert Require Errors Globalenvs Integers. -From compcert Require Import Maps AST. -From vericert Require Import Verilog RTLPar HTL Vericertlib AssocMap ValueInt Statemonad. - -Import Lia. +Require Import Coq.micromega.Lia. + +Require Import compcert.common.AST. +Require compcert.common.Errors. +Require compcert.common.Globalenvs. +Require compcert.lib.Integers. +Require Import compcert.lib.Maps. + +Require Import vericert.common.Statemonad. +Require Import vericert.common.Vericertlib. +Require Import vericert.hls.Verilog. +Require Import vericert.hls.RTLPar. +Require Import vericert.hls.HTL. +Require Import vericert.hls.AssocMap. +Require Import vericert.hls.ValueInt. Hint Resolve AssocMap.gempty : htlh. Hint Resolve AssocMap.gso : htlh. -- cgit