00001 #include <scil/column_entry.h>
00002
00003 using namespace SCIL;
00004
00005 column_entry::column_entry(cons v, double c)
00006 {
00007 coeff=c;
00008 Cons=v;
00009 };
00010
00011
00012 int SCIL::compare(const column_entry& t1, const column_entry& t2)
00013 {
00014 return compare(t1.Cons,t2.Cons);
00015 }
00016
00017
00018 ostream& operator<<(ostream& o,const column_entry&)
00019 {
00020 return o;
00021 };
00022
00023
00024 istream& operator>>(istream& i,const column_entry&)
00025 {
00026 return i;
00027 };
00028