forked from xukan840730/mathematical_optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheigenlib.natvis
31 lines (31 loc) · 1.02 KB
/
eigenlib.natvis
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
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="CRect1">
<DisplayString>{{top={top} bottom={bottom} left={left} right={right}}}</DisplayString>
<Expand>
<Item Name="Width">right - left</Item>
<Item Name="Height">bottom - top</Item>
</Expand>
</Type>
<Type Name="Eigen::DenseStorage<*,*,*,*,*>">
<DisplayString>{{rows={m_rows} cols={m_cols}}}</DisplayString>
<Expand>
<Item Name="[rows]">m_rows</Item>
<Item Name="[cols]">m_cols</Item>
<ArrayItems>
<Size>m_rows*m_cols</Size>
<ValuePointer>m_data.array</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="Eigen::DenseStorage<*,*,*,*>">
<DisplayString>{{rows={m_rows}}}</DisplayString>
<Expand>
<Item Name="[rows]">m_rows</Item>
<ArrayItems>
<Size>m_rows*1</Size>
<ValuePointer>m_data.array</ValuePointer>
</ArrayItems>
</Expand>
</Type>
</AutoVisualizer>