Custom Query (124 matches)
Results (61 - 63 of 124)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#104 | wontfix | When setting default field name, id should prevail on field_ref | ymipsl | ssenesi |
Description |
When writing :
Field "oddust" get the same name as field "odd550dust" When writing
field "oddust" has name=id="oddust" I beliewe that most users expect that the latter behaviour applies in the first case |
|||
#111 | fixed | wrong consistency check in domaion.cpp on ni when data_dim=1 | ymipsl | ssenesi |
Description |
domain.cpp reads at line 730 : if ((ni.getValue() < 0 || ibegin.getValue() < 0) || ((type_attr::unstructured != type) && ((ibegin.getValue() + ni.getValue()) > ni_glo.getValue()))) while it should be: if ((ni.getValue() < 0 || ibegin.getValue() < 0) || ((data_dim.get(Value()== 2 && ((ibegin.getValue() + ni.getValue()) > ni_glo.getValue()))) as you can have data_dim=1 and e.g. type=curvilinear, which breaks the relationship between ni and ni_glo. Another formulation would be to use as a ceiling value for ni :
|
|||
#115 | fixed | Date parsing does not support whitespace | rlacroix | ssenesi |
Description |
I got an error with r1028 when writing
instead of
|