Revision c206b9035f722ce969cde24cacd05182e6434754 authored by Mohamed Barakat on 08 July 2015, 14:52:28 UTC, committed by Mohamed Barakat on 09 July 2015, 16:29:50 UTC
1 parent e2f711d
Raw File
init.g
#############################################################################
##
##  init.g                                            ToolsForHomalg package
##
##  Copyright 2007-2012, Mohamed Barakat, University of Kaiserslautern
##                       Sebastian Gutsche, RWTH-Aachen University
##                  Markus Lange-Hegermann, RWTH-Aachen University
##
##  Reading the declaration part of the ToolsForHomalg package.
##
#############################################################################

## init
ReadPackage( "ToolsForHomalg", "gap/ToolsForHomalg.gd" );

ReadPackage( "ToolsForHomalg", "gap/ToDoListEntry.gd" );

ReadPackage( "ToolsForHomalg", "gap/ToDoListBluePrints.gd" );

ReadPackage( "ToolsForHomalg", "gap/ToDoLists.gd" );

ReadPackage( "ToolsForHomalg", "gap/Trees.gd" );

## This is a workaround since GAP (<=4.4.12) does not load
## the implementation parts of the different packages
## in the same order as the declaration parts;
## I hope this becomes obsolete in the future
LOADED_ToolsForHomalg_implementation := true;

ReadPackage( "ToolsForHomalg", "gap/ToolsForHomalg.gi" );

ReadPackage( "ToolsForHomalg", "gap/ToDoListWeakPointer.gd" );

ReadPackage( "ToolsForHomalg", "gap/GenericView.gd" );

ReadPackage( "ToolsForHomalg", "gap/CachingObjects.gd" );

ReadPackage( "ToolsForHomalg", "gap/CachingObjects.gi" );
back to top