Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/backend/buildingblocks/BuildingBlockFloatAbstract.java

Go to the documentation of this file.
00001 package m2m.backend.buildingblocks;
00002 
00003 public abstract class BuildingBlockFloatAbstract extends BuildingBlock {
00004 
00009         BuildingBlockFloatAbstract() {
00010                 m_significandSize = 24;
00011                 m_exponentSize = 7;
00012         }
00013 
00018         public int getExponentSize() {
00019                 return m_exponentSize;
00020         }
00021 
00026         public int getSignificandSize() {
00027                 return m_significandSize;
00028         }
00032         protected int m_exponentSize;
00036         protected int m_significandSize;
00037 }
00038 
 All Classes Namespaces Files Functions Variables Enumerations