MantisBT - VTK | ||||||||||
| View Issue Details | ||||||||||
| ID | Project | Category | View Status | Date Submitted | Last Update | |||||
| 0014340 | VTK | (No Category) | public | 2013-10-21 15:35 | 2015-09-01 09:27 | |||||
| Reporter | sxmc | |||||||||
| Assigned To | T.J. Corona | |||||||||
| Priority | high | Severity | minor | Reproducibility | have not tried | |||||
| Status | closed | Resolution | fixed | |||||||
| Platform | OS | OS Version | ||||||||
| Product Version | 6.0.0 | |||||||||
| Target Version | Fixed in Version | |||||||||
| Project | TBD | |||||||||
| Type | crash | |||||||||
| Summary | 0014340: vtkGraph FindVertex failure | |||||||||
| Description | I highly suspect that the issue lies somewhere more specific (might be related to http://www.vtk.org/Bug/view.php?id=13143 [^]), and therefore suspect it might cause for more issues in different components eventually. In any case, see the code below. #include <vtkSmartPointer.h> #include <vtkDataSetAttributes.h> #include <vtkIntArray.h> #include <vtkMutableUndirectedGraph.h> int main(int, char *[]) { vtkSmartPointer<vtkMutableUndirectedGraph> g = vtkSmartPointer<vtkMutableUndirectedGraph>::New(); vtkIntArray *pedigreeIds = vtkIntArray::New(); g->GetVertexData()->SetPedigreeIds(pedigreeIds); g->AddVertex(vtkVariant(0)); g->AddVertex(vtkVariant(1)); g->AddVertex(vtkVariant(16)); g->AddVertex(vtkVariant(17)); g->AddVertex(vtkVariant(24)); std::cout << g->FindVertex(vtkVariant(24)) << std::endl; return EXIT_SUCCESS; } On my PC (Visual Studio 2010 Pro; build debug x86) it will output -1. Removing any value (except for the last one, 24) will make it output values as expected. | |||||||||
| Steps To Reproduce | ||||||||||
| Additional Information | ||||||||||
| Tags | No tags attached. | |||||||||
| Relationships |
| |||||||||
| Attached Files | ||||||||||
| Issue History | ||||||||||
| Date Modified | Username | Field | Change | |||||||
| 2013-10-21 15:35 | sxmc | New Issue | ||||||||
| 2014-10-02 14:16 | Utkarsh Ayachit | Relationship added | related to 0013143 | |||||||
| 2015-08-18 10:37 | T.J. Corona | Assigned To | => T.J. Corona | |||||||
| 2015-09-01 09:27 | T.J. Corona | Note Added: 0035111 | ||||||||
| 2015-09-01 09:27 | T.J. Corona | Status | backlog => closed | |||||||
| 2015-09-01 09:27 | T.J. Corona | Resolution | open => fixed | |||||||
| Notes | |||||
|
|
|||||
|
|
||||