lazhen
2025-01-09 8afe90b633046db39042aada36b88193062f8cff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Quintiq file version 2.0
#parent: #root
StaticMethod GetDiffIndex (const RealVector vector1, const RealVector vector2) as Number
{
  Description:
  [*
    Return the index of the cell in which the vector is different.
    This returns -1 if there is no difference.
  *]
  TextBody:
  [*
    value := -1;
    
    assert( vector1.Size() = vector2.Size(), 'The size of the vectors is not identical' );
    
    for( i := 0; i < vector1.Size(); i++ )
    {
      if( vector1.Get( i ) <> vector2.Get( i ) )
      {
        value := i;
        i := vector1.Size();
      }
    }
    
    return value;
  *]
  InterfaceProperties { Accessibility: 'Module' }
}