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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML3.2 EN">
<HTML>
<HEAD> <link rel="canonical" href="http://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/DMNetwork/DMNetworkSetSizes.html" />
<META NAME="GENERATOR" CONTENT="DOCTEXT">
<TITLE>DMNetworkSetSizes</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<div id="version" align=right><b>petsc-3.10.3 2018-12-18</b></div>
<div id="bugreport" align=right><a href="mailto:petsc-maint@mcs.anl.gov?subject=Typo or Error in Documentation &body=Please describe the typo or error in the documentation: petsc-3.10.3 v3.10.3 docs/manualpages/DMNetwork/DMNetworkSetSizes.html "><small>Report Typos and Errors</small></a></div>
<A NAME="DMNetworkSetSizes"><H1>DMNetworkSetSizes</H1></A>
Sets the number of subnetworks, local and global vertices and edges for each subnetwork.
<H3><FONT COLOR="#CC3333">Synopsis</FONT></H3>
<PRE>
#include "petscdmnetwork.h"
<A HREF="../Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</A> <A HREF="../DMNetwork/DMNetworkSetSizes.html#DMNetworkSetSizes">DMNetworkSetSizes</A>(<A HREF="../DM/DM.html#DM">DM</A> dm,<A HREF="../Sys/PetscInt.html#PetscInt">PetscInt</A> Nsubnet,<A HREF="../Sys/PetscInt.html#PetscInt">PetscInt</A> NsubnetCouple,<A HREF="../Sys/PetscInt.html#PetscInt">PetscInt</A> nV[], <A HREF="../Sys/PetscInt.html#PetscInt">PetscInt</A> nE[], <A HREF="../Sys/PetscInt.html#PetscInt">PetscInt</A> NV[], <A HREF="../Sys/PetscInt.html#PetscInt">PetscInt</A> NE[])
</PRE>
Collective on <A HREF="../DM/DM.html#DM">DM</A>
<P>
<H3><FONT COLOR="#CC3333">Input Parameters</FONT></H3>
<TABLE border="0" cellpadding="0" cellspacing="0">
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>dm </B></TD><TD>- the dm object
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>Nsubnet </B></TD><TD>- number of subnetworks
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>NsubnetCouple </B></TD><TD>- number of coupling subnetworks
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>nV </B></TD><TD>- number of local vertices for each subnetwork and coupling subnetwork
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>nE </B></TD><TD>- number of local edges for each subnetwork and coupling subnetwork
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>NV </B></TD><TD>- number of global vertices (or <A HREF="../Sys/PETSC_DETERMINE.html#PETSC_DETERMINE">PETSC_DETERMINE</A>) for each subnetwork and coupling subnetwork
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>NE </B></TD><TD>- number of global edges (or <A HREF="../Sys/PETSC_DETERMINE.html#PETSC_DETERMINE">PETSC_DETERMINE</A>) for each subnetwork and coupling subnetwork
</TD></TR></TABLE>
<P>
Notes
If one processor calls this with NV (NE) of <A HREF="../Sys/PETSC_DECIDE.html#PETSC_DECIDE">PETSC_DECIDE</A> then all processors must, otherwise the prgram will hang.
<P>
You cannot change the sizes once they have been set. nV, nE, NV and NE are arrays of length Nsubnet+NsubnetCouple.
<P>
<P>
<H3><FONT COLOR="#CC3333">See Also</FONT></H3>
<A HREF="../DMNetwork/DMNetworkCreate.html#DMNetworkCreate">DMNetworkCreate</A>()
<BR><P><B></B><H3><FONT COLOR="#CC3333">Level</FONT></H3>intermediate<BR>
<H3><FONT COLOR="#CC3333">Location</FONT></H3>
</B><A HREF="../../../src/dm/impls/network/network.c.html#DMNetworkSetSizes">src/dm/impls/network/network.c</A>
<BR><A HREF="./index.html">Index of all DMNetwork routines</A>
<BR><A HREF="../../index.html">Table of Contents for all manual pages</A>
<BR><A HREF="../singleindex.html">Index of all manual pages</A>
</BODY></HTML>
|