2023-03-27 10:16:23 -07:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml" >
< head >
< meta http-equiv = "Content-Type" content = "text/xhtml;charset=UTF-8" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=9" / >
< meta name = "generator" content = "Doxygen 1.8.17" / >
2023-04-23 12:52:57 -07:00
< meta name = "description" content = "PhasicFlow is an open-source parallel DEM (discrete element method) package for simulating granular flow. It is developed in C++ and can be exectued on both GPU (like CUDA) and CPU." >
2023-03-27 10:16:23 -07:00
< title > PhasicFlow: src/phasicFlow/containers/VectorHD/VectorSingles.hpp File Reference< / title >
< link href = "tabs.css" rel = "stylesheet" type = "text/css" / >
< script type = "text/javascript" src = "jquery.js" > < / script >
< script type = "text/javascript" src = "dynsections.js" > < / script >
< link href = "navtree.css" rel = "stylesheet" type = "text/css" / >
< script type = "text/javascript" src = "resize.js" > < / script >
< script type = "text/javascript" src = "navtreedata.js" > < / script >
< script type = "text/javascript" src = "navtree.js" > < / script >
< link href = "search/search.css" rel = "stylesheet" type = "text/css" / >
< script type = "text/javascript" src = "search/searchdata.js" > < / script >
< script type = "text/javascript" src = "search/search.js" > < / script >
< script type = "text/javascript" >
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3& dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function() { init_search(); });
/* @license-end */
< / script >
2023-04-02 11:35:43 -07:00
< script type = "text/x-mathjax-config" >
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
< / script >
< script type = "text/javascript" async = "async" src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js" > < / script >
2023-03-27 10:16:23 -07:00
< link href = "doxygen.css" rel = "stylesheet" type = "text/css" / >
< link href = "customdoxygen.css" rel = "stylesheet" type = "text/css" / >
< / head >
< body >
< div id = "top" > <!-- do not remove this div, it is closed by doxygen! -->
< div id = "titlearea" >
2023-04-14 10:28:41 -07:00
< table cellspacing = "0" >
2023-03-27 10:16:23 -07:00
< tbody >
2023-04-14 10:28:41 -07:00
< tr >
< td id = "projectlogo" > < a href = "https://github.com/PhasicFlow" > < img alt = "Logo" src = "phasicFlow_logo.png" > < / a > < / td >
2023-03-27 10:16:23 -07:00
< td > < div id = "MSearchBox" class = "MSearchBoxInactive" >
< span class = "left" >
< img id = "MSearchSelect" src = "search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
< input type = "text" id = "MSearchField" value = "Search" accesskey = "S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
< / span > < span class = "right" >
< a id = "MSearchClose" href = "javascript:searchBox.CloseResultsWindow()" > < img id = "MSearchCloseImg" border = "0" src = "search/close.png" alt = "" / > < / a >
< / span >
< / div >
< / td >
< / tr >
2023-04-14 10:28:41 -07:00
< tr >
< td id = "projectbrief" >
< a href = "https://https://cemf.ir" > www.cemf.ir< / a >
< / td >
< / tr >
2023-03-27 10:16:23 -07:00
< / tbody >
< / table >
< / div >
<!-- end header part -->
<!-- Generated by Doxygen 1.8.17 -->
< script type = "text/javascript" >
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3& dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
< / script >
< / div > <!-- top -->
< div id = "side-nav" class = "ui-resizable side-nav-resizable" >
< div id = "nav-tree" >
< div id = "nav-tree-contents" >
< div id = "nav-sync" class = "sync" > < / div >
< / div >
< / div >
< div id = "splitbar" style = "-moz-user-select:none;"
class="ui-resizable-handle">
< / div >
< / div >
< script type = "text/javascript" >
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3& dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('VectorSingles_8hpp.html',''); initResizable(); });
/* @license-end */
< / script >
< div id = "doc-content" >
<!-- window showing the filter options -->
< div id = "MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
< / div >
<!-- iframe showing the search results (closed by default) -->
< div id = "MSearchResultsWindow" >
< iframe src = "javascript:void(0)" frameborder = "0"
name="MSearchResults" id="MSearchResults">
< / iframe >
< / div >
< div class = "header" >
< div class = "summary" >
< a href = "#namespaces" > Namespaces< / a > |
< a href = "#typedef-members" > Typedefs< / a > < / div >
< div class = "headertitle" >
< div class = "title" > VectorSingles.hpp File Reference< / div > < / div >
< / div > <!-- header -->
< div class = "contents" >
2023-04-02 14:53:54 -07:00
< div class = "textblock" > < div id = "dynsection-0" onclick = "return toggleVisibility(this)" class = "dynheader closed" style = "cursor:pointer;" >
< img id = "dynsection-0-trigger" src = "closed.png" alt = "+" / > Include dependency graph for VectorSingles.hpp:< / div >
< div id = "dynsection-0-summary" class = "dynsummary" style = "display:block;" >
< / div >
< div id = "dynsection-0-content" class = "dyncontent" style = "display:none;" >
2023-03-27 10:16:23 -07:00
< div class = "center" > < img src = "VectorSingles_8hpp__incl.png" border = "0" usemap = "#src_2phasicFlow_2containers_2VectorHD_2VectorSingles_8hpp" alt = "" / > < / div >
< / div >
2023-04-02 14:53:54 -07:00
< / div > < div class = "textblock" > < div id = "dynsection-1" onclick = "return toggleVisibility(this)" class = "dynheader closed" style = "cursor:pointer;" >
< img id = "dynsection-1-trigger" src = "closed.png" alt = "+" / > This graph shows which files directly or indirectly include this file:< / div >
< div id = "dynsection-1-summary" class = "dynsummary" style = "display:block;" >
< / div >
< div id = "dynsection-1-content" class = "dyncontent" style = "display:none;" >
2023-03-27 10:16:23 -07:00
< div class = "center" > < img src = "VectorSingles_8hpp__dep__incl.png" border = "0" usemap = "#src_2phasicFlow_2containers_2VectorHD_2VectorSingles_8hppdep" alt = "" / > < / div >
< / div >
< / div >
< p > < a href = "VectorSingles_8hpp_source.html" > Go to the source code of this file.< / a > < / p >
< table class = "memberdecls" >
< tr class = "heading" > < td colspan = "2" > < h2 class = "groupheader" > < a name = "namespaces" > < / a >
Namespaces< / h2 > < / td > < / tr >
< tr class = "memitem:namespacepFlow" > < td class = "memItemLeft" align = "right" valign = "top" >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html" > pFlow< / a > < / td > < / tr >
< tr class = "separator:" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< / table > < table class = "memberdecls" >
< tr class = "heading" > < td colspan = "2" > < h2 class = "groupheader" > < a name = "typedef-members" > < / a >
Typedefs< / h2 > < / td > < / tr >
< tr class = "memitem:ac91e952c3a8f9438e5c8bfb93f4094e4" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int8 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#ac91e952c3a8f9438e5c8bfb93f4094e4" > int8Vector_D< / a > < / td > < / tr >
< tr class = "separator:ac91e952c3a8f9438e5c8bfb93f4094e4" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a767fab5705dae43ebad8fca527814905" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int8, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a767fab5705dae43ebad8fca527814905" > int8Vector_H< / a > < / td > < / tr >
< tr class = "separator:a767fab5705dae43ebad8fca527814905" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a548dbb86f2b3fb0513b23daa8ac8f189" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int32 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a548dbb86f2b3fb0513b23daa8ac8f189" > int32Vector_D< / a > < / td > < / tr >
< tr class = "separator:a548dbb86f2b3fb0513b23daa8ac8f189" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a751d9816bbb35284a9a8a499b5748107" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int32, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a751d9816bbb35284a9a8a499b5748107" > int32Vector_H< / a > < / td > < / tr >
< tr class = "separator:a751d9816bbb35284a9a8a499b5748107" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:acc0003bf19253591e9b5487c7fc8ead3" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int64 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#acc0003bf19253591e9b5487c7fc8ead3" > int64Vector_D< / a > < / td > < / tr >
< tr class = "separator:acc0003bf19253591e9b5487c7fc8ead3" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a101356f7b0d8a873ec5fc2a76b9988ce" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int64, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a101356f7b0d8a873ec5fc2a76b9988ce" > int64Vector_H< / a > < / td > < / tr >
< tr class = "separator:a101356f7b0d8a873ec5fc2a76b9988ce" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:ad6842b9b08ed95bc2bb72cc0a926c559" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint8 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#ad6842b9b08ed95bc2bb72cc0a926c559" > uint8Vector_D< / a > < / td > < / tr >
< tr class = "separator:ad6842b9b08ed95bc2bb72cc0a926c559" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a2173f9613cce3ff5812747dacc733e45" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint8, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a2173f9613cce3ff5812747dacc733e45" > uint8Vector_H< / a > < / td > < / tr >
< tr class = "separator:a2173f9613cce3ff5812747dacc733e45" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2023-03-27 10:16:23 -07:00
< tr class = "memitem:a6c4463aa3523af8dd7409d33f2f98e08" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint32 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a6c4463aa3523af8dd7409d33f2f98e08" > uint32Vector_D< / a > < / td > < / tr >
< tr class = "separator:a6c4463aa3523af8dd7409d33f2f98e08" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a15f32b513a1757dc4a0ff05292254b23" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint32, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a15f32b513a1757dc4a0ff05292254b23" > uint32Vector_H< / a > < / td > < / tr >
< tr class = "separator:a15f32b513a1757dc4a0ff05292254b23" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:ae9f95d9847cf497ced891ec26e287cd5" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint64 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#ae9f95d9847cf497ced891ec26e287cd5" > uint64Vector_D< / a > < / td > < / tr >
< tr class = "separator:ae9f95d9847cf497ced891ec26e287cd5" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:af41eb52e27bab5acd5988555385b8d80" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint64, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#af41eb52e27bab5acd5988555385b8d80" > uint64Vector_H< / a > < / td > < / tr >
< tr class = "separator:af41eb52e27bab5acd5988555385b8d80" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2023-03-27 10:16:23 -07:00
< tr class = "memitem:abcf780498c2fa21662ffb27b22056cc9" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< real >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#abcf780498c2fa21662ffb27b22056cc9" > realVector_D< / a > < / td > < / tr >
< tr class = "separator:abcf780498c2fa21662ffb27b22056cc9" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a82a82591ca980d983da36337fd7636a2" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< real, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a82a82591ca980d983da36337fd7636a2" > realVector_H< / a > < / td > < / tr >
< tr class = "separator:a82a82591ca980d983da36337fd7636a2" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a648e9586ec15d127938511ea0e11b215" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< realx3 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a648e9586ec15d127938511ea0e11b215" > realx3Vector_D< / a > < / td > < / tr >
< tr class = "separator:a648e9586ec15d127938511ea0e11b215" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:aa94e1b6d6afb9a1b9ec064b689c11bcf" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< realx3, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#aa94e1b6d6afb9a1b9ec064b689c11bcf" > realx3Vector_H< / a > < / td > < / tr >
< tr class = "separator:aa94e1b6d6afb9a1b9ec064b689c11bcf" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a0e261b3758f76a1542108fd76b517180" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int32x3 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a0e261b3758f76a1542108fd76b517180" > int32x3Vector_D< / a > < / td > < / tr >
< tr class = "separator:a0e261b3758f76a1542108fd76b517180" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:aebe39b95317e999f81042bf0d046738c" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int32x3, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#aebe39b95317e999f81042bf0d046738c" > int32x3Vector_H< / a > < / td > < / tr >
< tr class = "separator:aebe39b95317e999f81042bf0d046738c" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a2c0e37bcf6ea08bf96cb57520187953a" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int64x3 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a2c0e37bcf6ea08bf96cb57520187953a" > int64x3Vector_D< / a > < / td > < / tr >
< tr class = "separator:a2c0e37bcf6ea08bf96cb57520187953a" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a05295afd498bbc07c1a0c04ae42a02c4" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< int64x3, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a05295afd498bbc07c1a0c04ae42a02c4" > int64x3Vector_H< / a > < / td > < / tr >
< tr class = "separator:a05295afd498bbc07c1a0c04ae42a02c4" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:afcd161d12007c0285e05217f48ced926" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint32x3 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#afcd161d12007c0285e05217f48ced926" > uint32x3Vector_D< / a > < / td > < / tr >
< tr class = "separator:afcd161d12007c0285e05217f48ced926" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:aaee78c0b9b731b03e9d6a504c24153ba" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< uint32x3, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#aaee78c0b9b731b03e9d6a504c24153ba" > uint32x3Vector_H< / a > < / td > < / tr >
< tr class = "separator:aaee78c0b9b731b03e9d6a504c24153ba" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2023-03-27 10:16:23 -07:00
< tr class = "memitem:a9bfa3b4b0794b58e5e00c94608c763a9" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< realx3x3 >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a9bfa3b4b0794b58e5e00c94608c763a9" > realx3x3Vector_D< / a > < / td > < / tr >
< tr class = "separator:a9bfa3b4b0794b58e5e00c94608c763a9" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a0d4b8229526695fde8d8dca751817114" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< realx3x3, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a0d4b8229526695fde8d8dca751817114" > realx3x3Vector_H< / a > < / td > < / tr >
< tr class = "separator:a0d4b8229526695fde8d8dca751817114" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:aa7e6436a5b885c7583b3bba82a6e353b" > < td class = "memItemLeft" align = "right" valign = "top" > typedef VectorSingle< word, HostSpace >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#aa7e6436a5b885c7583b3bba82a6e353b" > wordVector_H< / a > < / td > < / tr >
< tr class = "separator:aa7e6436a5b885c7583b3bba82a6e353b" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2023-03-27 10:16:23 -07:00
< / table >
< / div > <!-- contents -->
< / div > <!-- doc - content -->
< div id = "nav-path" class = "navpath" > <!-- id is needed for treeview function! -->
< ul >
< li class = "navelem" > < a class = "el" href = "dir_68267d1309a1af8e8297ef4c3efbcdba.html" > src< / a > < / li > < li class = "navelem" > < a class = "el" href = "dir_cd7a5046d028e114fc17b2ebc2bd02d2.html" > phasicFlow< / a > < / li > < li class = "navelem" > < a class = "el" href = "dir_74a3bd5d559eb2469f344a26dc365ad0.html" > containers< / a > < / li > < li class = "navelem" > < a class = "el" href = "dir_6e5937d7e5e1e467a126da306e3d0a5a.html" > VectorHD< / a > < / li > < li class = "navelem" > < a class = "el" href = "VectorSingles_8hpp.html" > VectorSingles.hpp< / a > < / li >
< li class = "footer" > Generated by
< a href = "http://www.doxygen.org/index.html" >
< img class = "footer" src = "doxygen.png" alt = "doxygen" / > < / a > 1.8.17 < / li >
< / ul >
< / div >
< / body >
< / html >