Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class C>
void Impala::Core::Column::DivAssign ( C *  col,
typename C::ColElemType  val,
int  start,
int  end 
) [inline]

Definition at line 17 of file DivAssign.h.

References ILOG_ERROR, and ILOG_VAR.

00018 {
00019     ILOG_VAR(Impala.Core.Column.DivAssign);
00020     if (end == -1)
00021         end = col->Capacity();
00022     if (end > col->Capacity())
00023     {
00024         ILOG_ERROR("Incompatible range");
00025         return;
00026     }
00027     for (int i=start ; i<end ; i++)
00028         col->Set(i, col->Get(i) / val);
00029 }


Generated on Thu Jan 13 09:18:47 2011 for ImpalaSrc by  doxygen 1.5.1