001/*
002 * $Id$
003 */
004
005package edu.jas.structure;
006
007
008/**
009 * Gcd ring element interface. Empty interface since gcd and egcd is now in
010 * RingElem. Adds greatest common divisor and extended greatest common divisor.
011 * @param <C> gcd element type
012 * @author Heinz Kredel
013 */
014
015public interface GcdRingElem<C extends GcdRingElem<C>> extends RingElem<C> {
016
017}