Skip to content

Commit

Permalink
Merge pull request #1157 from totto82/defaultSOF2
Browse files Browse the repository at this point in the history
Use linear interpolation for kro column in SOF2 Table
  • Loading branch information
joakim-hove authored Nov 23, 2017
2 parents f46c702 + f9a851e commit bce1f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/eclipse/EclipseState/Tables/Tables.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ const TableColumn& SlgofTable::getJFuncColumn() const {

Sof2Table::Sof2Table( const DeckItem& item ) {
m_schema.addColumn( ColumnSchema( "SO" , Table::STRICTLY_INCREASING , Table::DEFAULT_NONE ));
m_schema.addColumn( ColumnSchema( "KRO" , Table::INCREASING , Table::DEFAULT_NONE ));
m_schema.addColumn( ColumnSchema( "KRO" , Table::INCREASING , Table::DEFAULT_LINEAR));

SimpleTable::init(item);
}
Expand Down

0 comments on commit bce1f98

Please sign in to comment.