Skip to content

Instantly share code, notes, and snippets.

@kenwebb
Last active December 21, 2017 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenwebb/32b2ecdbb0c7d0e945bcdfdd6a7dca05 to your computer and use it in GitHub Desktop.
Save kenwebb/32b2ecdbb0c7d0e945bcdfdd6a7dca05 to your computer and use it in GitHub Desktop.
Buttons and Threads
<?xml version="1.0" encoding="UTF-8"?>
<!--Xholon Workbook http://www.primordion.com/Xholon/gwt/ MIT License, Copyright (C) Ken Webb, Thu Dec 21 2017 10:56:44 GMT-0500 (EST)-->
<XholonWorkbook>
<Notes><![CDATA[
Xholon
------
Title: Buttons and Threads
Description:
Url: http://www.primordion.com/Xholon/gwt/
InternalName: 32b2ecdbb0c7d0e945bcdfdd6a7dca05
Keywords:
My Notes
--------
December 20, 2017
To produce the SVG line chart:
- run the model for 2000+ time steps
- copy the data from the "out" tab
- paste the data into a LibreOffice Calc spreadsheet, as 2 comma-delimited columns
- create a chart - XY (Scatter) Lines Only
- select the 2 ranges
- if necessary, reverse the ranges of the X and Y data
- add titles to the chart
- export the chart in SVG format
- paste the SVG content into this workbook
References
----------
(1) Watts (2003), Six Degrees, p. 44
]]></Notes>
<_-.XholonClass>
<PhysicalSystem/>
<Button/>
<Buttons/>
<Component/>
<Components/>
</_-.XholonClass>
<xholonClassDetails>
</xholonClassDetails>
<PhysicalSystem>
<Buttons>
<Button multiplicity="1000"/>
</Buttons>
<Components>
<!-- at runtime, Component nodes will be added here -->
</Components>
</PhysicalSystem>
<Buttonsbehavior implName="org.primordion.xholon.base.Behavior_gwtjs"><![CDATA[
var me, buttonArr, buttonCount, edgeCount, componentsNode, beh = {
postConfigure: function() {
me = this.cnode.parent();
buttonArr = [];
componentsNode = me.next();
var button = me.first();
while (button && button.xhc().name() == "Button") {
button.thread = [];
button.component = null;
buttonArr.push(button);
button = button.next();
}
buttonCount = buttonArr.length; // total number of buttons/nodes (a constant)
edgeCount = 0; // total number of directed threads/edges between buttons/nodes
$wnd.console.log(buttonArr);
$wnd.xh.root().append(this.cnode.remove());
},
act: function() {
var button1 = me.xpath("./Button[" + $wnd.Math.ceil($wnd.Math.random() * buttonCount) + "]");
var button2 = me.xpath("./Button[" + $wnd.Math.ceil($wnd.Math.random() * buttonCount) + "]");
if ((button1 != button2) && (button1.thread.indexOf(button2) == -1)) {
// only push onto array if that button is not already in the array
var componentNode = null;
if (!button1.component && !button2.component) {
componentsNode.append("<" + "Component/>");
componentNode = componentsNode.last();
componentNode.buttons = [];
button1.component = componentNode;
button2.component = componentNode;
componentNode.buttons.push(button1);
componentNode.buttons.push(button2);
}
else if (button1.component && !button2.component) {
button2.component = button1.component;
button1.component.buttons.push(button2);
}
else if (!button1.component && button2.component) {
button1.component = button2.component;
button2.component.buttons.push(button1);
}
else if (button1.component != button2.component) {
// move all button refs from button2.component.buttons to button1.component.buttons
var button2Component = button2.component;
var button2ComponentButtons = button2.component.buttons;
for (var i = 0; i < button2ComponentButtons.length; i++) {
button1.component.buttons.push(button2ComponentButtons[i]);
button2ComponentButtons[i].component = button1.component;
}
button2Component.remove();
}
else {
// both buttons are in the same existing component
}
button1.thread.push(button2);
edgeCount++;
//button2.thread.push(button1);
var lcarr = this.findLargestComponent();
var lcsize = lcarr[0];
var lccount = lcarr[1];
//me.println("LargestComponent: " + lcsize + " NumComponents: " + lccount);
//me.println("Fraction of all nodes in largest component: " + (lcsize / buttonCount));
//me.println("Average number of links per node: " + (edgeCount / buttonCount));
// double the edge count to convert from directed to undirected links
me.println((lcsize / buttonCount) + "," + ((edgeCount * 2) / buttonCount));
}
},
findLargestComponent: function() {
var cnodeCount = 0;
var maxCnode = null;
var maxCnodeSize = 0;
var cnode = componentsNode.first();
while (cnode) {
cnodeCount++;
if (cnode.buttons.length > maxCnodeSize) {
maxCnode = cnode;
maxCnodeSize = cnode.buttons.length;
}
cnode = cnode.next();
}
//$wnd.console.log(cnodeCount);
//$wnd.console.log(maxCnode.buttons);
return [maxCnodeSize, cnodeCount];
},
calcAverageLinksPerNode: function() {
return 0;
}
}
//# sourceURL=Buttonsbehavior.js
]]></Buttonsbehavior>
<SvgClient><Attribute_String roleName="svgUri"><![CDATA[data:image/svg+xml,
<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg">
<g>
<title>Buttons</title>
<rect id="PhysicalSystem/Buttons" fill="#98FB98" height="50" width="50" x="25" y="0"/>
<g>
<title>Button</title>
<rect id="PhysicalSystem/Buttons/Button" fill="#6AB06A" height="50" width="10" x="80" y="0"/>
</g>
</g>
</svg>
<svg width="332mm" height="174mm" viewBox="0 0 33200 17400" version="1.1" xmlns="http://www.w3.org/2000/svg" stroke-width="28.222" stroke-linejoin="round" xml:space="preserve">
<path fill="rgb(255,255,255)" stroke="none" d="M 16608,17430 L 0,17430 0,0 33215,0 33215,17430 16608,17430 Z"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 15944,15454 L 2402,15454 2402,1811 29485,1811 29485,15454 15944,15454 Z"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,15453 L 2402,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,13179 L 2402,13179"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,10905 L 2402,10905"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,8631 L 2402,8631"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,6357 L 2402,6357"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,4083 L 2402,4083"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,1809 L 2402,1809"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2402,15603 L 2402,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2402,15603 L 2402,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 5411,15603 L 5411,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 5411,15603 L 5411,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 8420,15603 L 8420,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 8420,15603 L 8420,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 11430,15603 L 11430,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 11430,15603 L 11430,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 14439,15603 L 14439,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 14439,15603 L 14439,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 17447,15603 L 17447,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 17447,15603 L 17447,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 20457,15603 L 20457,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 20457,15603 L 20457,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 23466,15603 L 23466,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 23466,15603 L 23466,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 26475,15603 L 26475,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 26475,15603 L 26475,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,15603 L 29485,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 29485,15603 L 29485,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2402,15453 L 29485,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,15453 L 2402,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,15453 L 2402,15453"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,13179 L 2402,13179"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,13179 L 2402,13179"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,10905 L 2402,10905"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,10905 L 2402,10905"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,8631 L 2402,8631"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,8631 L 2402,8631"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,6357 L 2402,6357"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,6357 L 2402,6357"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,4083 L 2402,4083"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,4083 L 2402,4083"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,1809 L 2402,1809"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2252,1809 L 2402,1809"/>
<path fill="none" stroke="rgb(179,179,179)" stroke-linejoin="round" d="M 2402,15453 L 2402,1809"/>
<path fill="none" stroke="rgb(0,69,134)" stroke-width="80" stroke-linejoin="round" d="M 2414,15430 L 2426,15430 2438,15430 2450,15430 2462,15430 2474,15430 2486,15430 2510,15430 2522,15430 2534,15430 2546,15430 2558,15430 2570,15430 2582,15430 2606,15430 2618,15430 2630,15430 2642,15430 2654,15430 2666,15430 2678,15430 2702,15430 2714,15430 2727,15430 2739,15430 2751,15430 2763,15430 2775,15430 2799,15430 2811,15430 2823,15430 2835,15418 2847,15418 2859,15418 2871,15418 2895,15418 2907,15418 2919,15418 2931,15418 2943,15418 2955,15418 2967,15418 2991,15418 3003,15418 3015,15418 3027,15418 3039,15418 3052,15418 3064,15418 3088,15418 3100,15418 3112,15418 3124,15418 3136,15418 3148,15418 3160,15418 3184,15418 3196,15418 3208,15418 3220,15418 3232,15418 3244,15418 3256,15418 3280,15418 3292,15407 3304,15407 3316,15407 3328,15407 3340,15407 3352,15407 3377,15407 3389,15407 3401,15407 3413,15407 3425,15407 3437,15407 3449,15407 3473,15407 3485,15407 3497,15407 3509,15396 3521,15396 3533,15396 3545,15396 3569,15396 3581,15396 3593,15396 3605,15396 3617,15396 3629,15396 3641,15396 3665,15396 3677,15396 3689,15396 3702,15396 3714,15396 3726,15396 3738,15396 3762,15396 3774,15396 3786,15396 3798,15396 3810,15396 3822,15396 3834,15396 3858,15384 3870,15384 3882,15384 3894,15384 3906,15384 3918,15384 3930,15384 3954,15373 3966,15373 3978,15373 3990,15373 4002,15373 4015,15373 4027,15373 4051,15373 4063,15373 4075,15373 4087,15373 4099,15373 4111,15373 4123,15373 4147,15373 4159,15373 4171,15373 4183,15373 4195,15373 4207,15373 4219,15373 4243,15373 4255,15373 4267,15373 4279,15373 4291,15373 4303,15373 4315,15373 4340,15373 4352,15373 4364,15373 4376,15373 4388,15373 4400,15373 4412,15373 4436,15373 4448,15373 4460,15373 4472,15373 4484,15373 4496,15373 4508,15373 4532,15373 4544,15373 4556,15373 4568,15373 4580,15373 4592,15373 4604,15373 4628,15373 4640,15373 4652,15373 4665,15373 4677,15373 4689,15373 4701,15373 4725,15373 4737,15373 4749,15373 4761,15373 4773,15373 4785,15373 4797,15373 4821,15373 4833,15373 4845,15373 4857,15373 4869,15373 4881,15373 4893,15373 4917,15373 4929,15373 4941,15373 4953,15373 4965,15373 4977,15373 4990,15362 5014,15362 5026,15362 5038,15362 5050,15362 5062,15362 5074,15362 5086,15362 5110,15362 5122,15327 5134,15327 5146,15327 5158,15327 5170,15327 5182,15327 5206,15327 5218,15327 5230,15327 5242,15327 5254,15327 5266,15327 5278,15327 5302,15327 5315,15327 5327,15327 5339,15327 5351,15327 5363,15327 5375,15327 5399,15327 5411,15327 5423,15327 5435,15327 5447,15327 5459,15327 5471,15327 5495,15327 5507,15327 5519,15327 5531,15327 5543,15327 5555,15327 5567,15316 5591,15316 5603,15316 5615,15316 5628,15316 5640,15316 5652,15305 5664,15305 5688,15305 5700,15305 5712,15305 5724,15305 5736,15305 5748,15305 5760,15305 5784,15305 5796,15305 5808,15305 5820,15305 5832,15305 5844,15305 5856,15305 5880,15293 5892,15293 5904,15293 5916,15293 5928,15293 5940,15293 5953,15293 5977,15293 5989,15293 6001,15293 6013,15293 6025,15293 6037,15293 6049,15293 6073,15293 6085,15293 6097,15293 6109,15282 6121,15282 6133,15282 6145,15282 6169,15259 6181,15259 6193,15259 6205,15259 6217,15259 6229,15259 6241,15259 6265,15259 6278,15259 6290,15259 6302,15259 6314,15259 6326,15259 6338,15259 6362,15259 6374,15259 6386,15259 6398,15248 6410,15248 6422,15248 6434,15248 6458,15248 6470,15248 6482,15248 6494,15248 6506,15248 6518,15248 6530,15248 6554,15248 6566,15248 6578,15248 6590,15248 6603,15248 6615,15248 6627,15248 6651,15225 6663,15225 6675,15225 6687,15225 6699,15225 6711,15225 6723,15225 6747,15225 6759,15225 6771,15225 6783,15225 6795,15225 6807,15225 6819,15225 6843,15225 6855,15225 6867,15225 6879,15225 6891,15225 6903,15225 6916,15225 6940,15225 6952,15225 6964,15225 6976,15202 6988,15202 7000,15202 7024,15202 7036,15202 7048,15202 7060,15202 7072,15202 7084,15202 7096,15202 7120,15202 7132,15202 7144,15202 7156,15202 7168,15202 7180,15202 7192,15202 7216,15202 7228,15202 7241,15202 7253,15202 7265,15202 7277,15202 7289,15202 7313,15009 7325,14998 7337,14998 7349,14998 7361,14998 7373,14998 7385,14998 7409,14998 7421,14998 7433,14998 7445,14998 7457,14998 7469,14998 7481,14998 7493,14986 7505,14986 7517,14986 7529,14986 7541,14986 7553,14986 7566,14986 7578,14986 7602,14986 7614,14952 7626,14952 7638,14952 7650,14952 7662,14952 7674,14952 7698,14952 7710,14952 7722,14941 7734,14941 7746,14941 7758,14941 7770,14941 7794,14941 7806,14941 7818,14941 7830,14941 7842,14941 7854,14941 7866,14941 7891,14941 7903,14941 7915,14941 7927,14941 7939,14941 7951,14941 7963,14941 7987,14941 7999,14941 8011,14941 8023,14941 8035,14907 8047,14907 8059,14520 8083,14520 8095,14520 8107,14520 8119,14520 8131,14520 8143,14520 8155,14520 8179,14520 8191,14520 8203,14520 8216,14520 8228,14520 8240,14520 8252,14520 8276,14520 8288,14520 8300,14520 8312,14520 8324,14520 8336,14497 8348,14497 8372,14452 8384,14452 8396,14452 8408,14452 8420,14452 8432,14452 8444,14452 8468,14452 8480,14350 8492,14350 8504,14338 8516,14338 8529,14338 8541,14327 8565,14327 8577,14327 8589,14327 8601,14327 8613,14327 8625,14327 8637,14327 8649,14293 8661,14293 8673,14293 8685,14293 8697,14293 8709,14293 8721,14293 8733,14270 8757,14270 8769,14270 8781,14270 8793,14270 8805,14247 8817,14247 8829,14247 8854,14247 8866,14247 8878,14247 8890,14247 8902,14054 8914,14054 8926,14054 8938,14043 8950,14043 8962,14043 8974,14043 8986,14043 8998,14043 9010,14043 9022,14031 9034,13974 9046,13974 9058,13974 9070,13974 9082,13940 9094,13940 9106,13940 9118,13940 9142,13940 9154,13940 9166,13929 9179,13929 9191,13929 9203,13929 9215,13929 9227,12644 9239,12633 9251,12633 9263,12621 9275,12621 9287,12621 9299,12621 9311,12610 9335,12599 9347,12587 9359,12439 9371,12428 9383,12417 9395,12417 9407,12405 9431,12405 9443,12371 9455,12371 9467,12371 9479,12371 9491,12371 9504,12371 9516,12292 9528,12292 9540,12292 9552,12292 9564,11791 9576,11769 9588,11621 9600,11621 9624,11621 9636,11609 9648,11587 9660,11587 9672,11587 9684,11587 9696,11530 9708,11518 9720,11507 9732,11496 9744,11462 9756,11462 9768,11450 9780,11439 9792,11439 9816,11439 9829,11428 9841,11428 9853,11428 9865,11382 9877,11337 9889,11314 9901,11280 9913,11280 9925,11280 9937,11280 9949,11211 9961,11200 9973,11155 9985,11155 10009,11155 10021,11155 10033,11155 10045,11121 10057,11109 10069,11098 10081,11041 10093,11018 10105,11018 10117,11007 10129,11007 10142,11007 10154,11007 10166,10995 10178,10984 10202,10984 10214,10961 10226,10961 10238,10939 10250,10905 10262,10905 10274,10893 10286,10870 10298,10859 10310,10814 10322,10723 10334,10677 10346,10677 10358,10654 10370,10654 10394,10643 10406,10643 10418,10643 10430,10643 10442,10643 10454,10643 10467,10620 10491,10586 10503,10586 10515,10586 10527,10529 10539,10336 10551,10302 10563,10200 10587,10165 10599,10154 10611,10120 10623,10120 10635,10120 10647,10109 10659,10097 10671,10029 10683,10029 10695,10029 10707,10029 10719,10029 10731,9995 10743,9949 10755,9938 10767,9927 10779,9881 10792,9881 10804,9881 10816,9881 10828,9870 10840,9858 10852,9711 10876,9529 10888,9529 10900,9472 10912,9472 10924,9461 10936,9426 10948,9426 10972,9392 10984,9392 10996,9392 11008,9392 11020,9392 11032,9392 11044,9392 11068,9392 11080,9358 11092,9358 11104,9335 11117,9335 11129,9335 11141,9324 11165,9313 11177,9301 11189,9131 11201,9131 11213,9131 11225,9108 11237,9085 11261,9074 11273,9074 11285,9051 11297,9051 11309,9051 11321,9051 11333,9017 11357,9006 11369,8983 11381,8960 11393,8960 11405,8960 11417,8960 11430,8915 11442,8903 11454,8903 11466,8892 11478,8892 11490,8892 11502,8881 11514,8881 11526,8869 11538,8869 11550,8869 11562,8869 11574,8869 11586,8858 11598,8847 11610,8812 11622,8801 11634,8801 11646,8756 11658,8756 11670,8756 11682,8756 11694,8711 11706,8711 11730,8711 11742,8688 11755,8666 11767,8541 11779,8541 11791,8541 11803,8541 11827,8541 11839,8529 11851,8518 11863,8518 11875,8518 11887,8506 11899,8506 11911,8461 11923,8461 11935,8461 11947,8461 11959,8450 11971,8450 11983,8450 11995,8438 12019,8438 12031,8438 12043,8438 12055,8438 12067,8438 12080,8438 12092,8427 12104,8415 12116,8415 12128,8381 12140,8381 12152,8381 12164,8370 12176,8370 12188,8370 12200,8359 12212,8359 12224,8359 12236,8347 12248,8347 12260,8347 12272,8347 12284,8347 12296,8325 12308,8325 12320,8325 12332,8313 12344,8313 12356,8313 12368,8313 12380,8234 12405,8222 12417,8199 12429,8177 12441,8177 12453,8177 12465,7938 12477,7938 12489,7927 12501,7927 12513,7915 12525,7904 12537,7892 12549,7870 12561,7858 12573,7858 12585,7847 12597,7847 12609,7847 12621,7847 12633,7847 12645,7836 12657,7836 12669,7836 12693,7836 12705,7836 12717,7824 12730,7801 12742,7790 12754,7665 12766,7665 12790,7665 12802,7665 12814,7642 12826,7642 12838,7642 12850,7642 12862,7631 12886,7631 12898,7631 12910,7620 12922,7597 12934,7597 12946,7597 12958,7597 12970,7574 12982,7574 12994,7563 13006,7563 13018,7460 13030,7438 13043,7426 13055,7415 13067,7392 13079,7392 13091,7358 13103,7358 13115,7358 13127,7358 13139,7358 13151,7358 13175,7358 13187,7347 13199,7347 13211,7347 13223,7347 13235,7347 13247,7335 13271,7313 13283,7313 13295,7301 13307,7301 13319,7301 13331,7301 13343,7290 13355,7244 13368,7222 13380,7222 13392,7222 13404,7222 13416,7222 13428,7210 13440,7210 13464,7199 13476,7188 13488,7062 13500,7051 13512,7051 13524,7051 13536,7051 13560,7028 13572,7028 13584,7028 13596,7017 13608,7017 13620,6983 13632,6983 13656,6983 13668,6949 13680,6949 13693,6949 13705,6915 13717,6915 13729,6903 13753,6858 13765,6835 13777,6801 13789,6790 13801,6778 13813,6767 13825,6744 13849,6744 13861,6744 13873,6721 13885,6721 13897,6676 13909,6676 13921,6676 13933,6664 13945,6664 13957,6664 13969,6653 13981,6653 13993,6653 14005,6653 14018,6653 14042,6653 14054,6653 14066,6619 14078,6619 14090,6608 14102,6596 14114,6596 14138,6574 14150,6562 14162,6562 14174,6551 14186,6539 14198,6528 14210,6528 14234,6528 14246,6528 14258,6505 14270,6505 14282,6494 14294,6483 14306,6483 14330,6460 14343,6460 14355,6448 14367,6448 14379,6437 14391,6392 14403,6369 14427,6369 14439,6369 14451,6357 14463,6346 14475,6346 14487,6335 14499,6335 14523,6335 14535,6323 14547,6323 14559,6312 14571,6312 14583,6312 14595,6312 14619,6312 14631,6312 14643,6255 14656,6255 14668,6255 14680,6232 14692,6232 14716,6232 14728,6232 14740,6232 14752,6210 14764,6198 14776,6187 14788,6187 14800,6119 14812,6119 14824,6119 14836,6119 14848,6119 14860,6119 14872,6062 14884,6062 14908,6062 14920,6051 14932,6039 14944,6039 14956,6028 14968,6028 14981,6016 15005,6005 15017,6005 15029,6005 15041,6005 15053,5982 15065,5971 15077,5971 15101,5937 15113,5914 15125,5914 15137,5914 15149,5914 15161,5914 15173,5914 15197,5914 15209,5903 15221,5880 15233,5880 15245,5880 15257,5880 15269,5857 15293,5857 15306,5857 15318,5857 15330,5857 15342,5846 15354,5846 15366,5834 15390,5834 15402,5834 15414,5834 15426,5834 15438,5812 15450,5812 15462,5812 15486,5812 15498,5800 15510,5800 15522,5800 15534,5800 15546,5789 15558,5789 15582,5789 15594,5789 15606,5778 15618,5778 15631,5766 15643,5744 15655,5744 15679,5732 15691,5732 15703,5732 15715,5732 15727,5732 15739,5732 15751,5732 15763,5721 15775,5721 15787,5709 15799,5709 15811,5709 15823,5675 15835,5664 15847,5653 15871,5653 15883,5653 15895,5653 15907,5653 15919,5641 15931,5641 15944,5641 15968,5641 15980,5630 15992,5630 16004,5630 16016,5630 16028,5630 16052,5630 16064,5630 16076,5630 16088,5630 16100,5618 16112,5618 16124,5618 16148,5618 16160,5618 16172,5618 16184,5618 16196,5618 16208,5607 16220,5607 16244,5607 16256,5607 16269,5607 16281,5607 16293,5584 16305,5584 16317,5584 16341,5584 16353,5562 16365,5562 16377,5562 16389,5550 16401,5539 16413,5539 16437,5539 16449,5539 16461,5539 16473,5539 16485,5539 16497,5539 16509,5527 16533,5527 16545,5516 16557,5505 16569,5505 16581,5505 16594,5505 16606,5505 16629,5505 16641,5493 16653,5482 16665,5482 16677,5459 16689,5459 16701,5459 16725,5448 16737,5448 16749,5448 16761,5448 16773,5425 16785,5414 16797,5414 16821,5402 16833,5402 16845,5380 16857,5380 16869,5380 16881,5380 16893,5368 16918,5368 16930,5368 16942,5368 16954,5368 16966,5357 16978,5357 16990,5357 17014,5357 17026,5346 17038,5334 17050,5334 17062,5334 17074,5334 17086,5323 17098,5311 17110,5311 17122,5311 17134,5311 17146,5311 17158,5289 17170,5289 17182,5277 17206,5277 17218,5277 17230,5277 17243,5277 17255,5277 17267,5266 17279,5266 17303,5266 17315,5266 17327,5266 17339,5266 17351,5266 17363,5266 17375,5266 17399,5266 17411,5266 17423,5266 17435,5243 17447,5243 17459,5243 17471,5232 17495,5232 17507,5220 17519,5220 17531,5220 17543,5209 17556,5209 17568,5198 17592,5186 17604,5186 17616,5186 17628,5186 17640,5186 17652,5186 17664,5186 17676,5175 17688,5175 17700,5175 17712,5175 17724,5175 17736,5175 17748,5175 17760,5175 17784,5175 17796,5175 17808,5175 17820,5175 17832,5175 17844,5175 17856,5175 17881,5175 17893,5175 17905,5175 17917,5164 17929,5164 17941,5164 17953,5164 17977,5152 17989,5141 18001,5141 18013,5141 18025,5130 18037,5130 18049,5130 18073,5130 18085,5130 18097,5130 18109,5130 18121,5130 18133,5130 18145,5130 18169,5130 18181,5130 18193,5130 18206,5130 18218,5130 18230,5130 18242,5130 18266,5118 18278,5118 18290,5118 18302,5118 18314,5118 18326,5118 18338,5118 18362,5118 18374,5118 18386,5118 18398,5118 18410,5118 18422,5118 18434,5118 18458,5118 18470,5107 18482,5107 18494,5107 18506,5095 18518,5095 18531,5095 18555,5095 18567,5095 18579,5095 18591,5095 18603,5095 18615,5095 18627,5084 18651,5084 18663,5084 18675,5084 18687,5061 18699,5061 18711,5061 18723,5061 18747,5050 18759,5050 18771,5050 18783,5050 18795,5050 18807,5050 18819,5050 18843,5050 18856,5050 18868,5050 18880,5050 18892,5050 18904,5050 18916,5050 18940,5050 18952,5050 18964,5050 18976,5050 18988,5050 19000,5050 19012,5050 19036,5027 19048,5027 19060,5027 19072,5027 19084,5027 19096,5027 19108,5027 19132,5027 19144,5027 19156,5016 19169,5016 19181,5016 19193,5016 19205,5016 19229,5016 19241,5016 19253,4993 19265,4993 19277,4993 19289,4993 19301,4993 19325,4993 19337,4982 19349,4982 19361,4982 19373,4982 19385,4982 19397,4982 19421,4982 19433,4982 19445,4982 19457,4982 19469,4982 19481,4982 19494,4982 19518,4982 19530,4982 19542,4982 19554,4982 19566,4982 19578,4982 19590,4982 19602,4970 19614,4959 19626,4959 19638,4948 19650,4948 19662,4948 19674,4948 19686,4948 19710,4948 19722,4948 19734,4914 19746,4914 19758,4914 19770,4914 19782,4914 19806,4914 19819,4914 19831,4914 19843,4914 19855,4914 19867,4902 19879,4902 19903,4891 19915,4891 19927,4891 19939,4891 19951,4891 19963,4891 19975,4891 19999,4891 20011,4891 20023,4891 20035,4891 20047,4891 20059,4891 20071,4891 20083,4879 20095,4868 20107,4868 20119,4868 20131,4868 20144,4868 20156,4868 20168,4857 20192,4857 20204,4857 20216,4857 20228,4857 20240,4857 20252,4857 20264,4857 20288,4857 20300,4845 20312,4834 20324,4834 20336,4823 20348,4823 20360,4823 20372,4811 20384,4811 20396,4811 20408,4811 20420,4811 20432,4811 20444,4800 20457,4800 20469,4788 20481,4777 20493,4777 20505,4743 20517,4743 20529,4743 20541,4743 20565,4743 20577,4743 20589,4743 20601,4743 20613,4743 20625,4732 20637,4732 20661,4732 20673,4732 20685,4732 20697,4732 20709,4732 20721,4732 20733,4732 20757,4697 20769,4697 20782,4697 20794,4697 20806,4697 20818,4686 20830,4686 20842,4675 20854,4675 20866,4675 20878,4675 20890,4675 20902,4675 20914,4675 20926,4663 20938,4652 20950,4652 20962,4652 20974,4641 20986,4641 20998,4641 21010,4641 21022,4641 21046,4629 21058,4629 21070,4629 21082,4618 21094,4618 21107,4618 21119,4618 21131,4595 21143,4595 21155,4595 21167,4595 21179,4595 21191,4595 21203,4595 21215,4584 21239,4584 21251,4584 21263,4584 21275,4584 21287,4584 21299,4584 21311,4584 21335,4584 21347,4584 21359,4584 21371,4584 21383,4584 21395,4584 21407,4584 21432,4584 21444,4584 21456,4584 21468,4584 21480,4584 21492,4584 21504,4572 21516,4561 21528,4561 21540,4561 21552,4561 21564,4561 21576,4561 21588,4561 21600,4550 21624,4550 21636,4550 21648,4550 21660,4550 21672,4550 21684,4550 21696,4550 21720,4550 21732,4550 21744,4550 21757,4550 21769,4550 21781,4550 21793,4550 21817,4550 21829,4550 21841,4550 21853,4550 21865,4550 21877,4550 21889,4550 21913,4550 21925,4550 21937,4550 21949,4550 21961,4550 21973,4538 21985,4538 22009,4538 22021,4538 22033,4538 22045,4538 22057,4527 22070,4527 22082,4527 22106,4516 22118,4516 22130,4516 22142,4516 22154,4504 22166,4504 22178,4504 22202,4504 22214,4504 22226,4504 22238,4504 22250,4504 22262,4504 22274,4504 22298,4504 22310,4504 22322,4504 22334,4504 22346,4504 22358,4504 22370,4493 22395,4493 22407,4493 22419,4493 22431,4493 22443,4493 22455,4493 22467,4493 22491,4493 22503,4493 22515,4493 22527,4493 22539,4493 22551,4493 22563,4493 22587,4493 22599,4493 22611,4493 22623,4493 22635,4493 22647,4481 22659,4481 22683,4481 22695,4481 22707,4481 22720,4481 22732,4481 22744,4481 22756,4481 22780,4481 22792,4481 22804,4481 22816,4481 22828,4481 22840,4481 22852,4481 22876,4481 22888,4481 22900,4481 22912,4481 22924,4481 22936,4481 22948,4481 22972,4481 22984,4481 22996,4481 23008,4470 23020,4470 23032,4470 23045,4470 23069,4470 23081,4470 23093,4470 23105,4470 23117,4470 23129,4470 23141,4470 23165,4470 23177,4459 23189,4459 23201,4459 23213,4459 23225,4459 23237,4459 23261,4425 23273,4425 23285,4425 23297,4425 23309,4425 23321,4425 23333,4425 23357,4425 23370,4402 23382,4390 23394,4390 23406,4390 23418,4390 23430,4390 23454,4390 23466,4390 23478,4390 23490,4390 23502,4390 23514,4390 23526,4390 23550,4390 23562,4390 23574,4390 23586,4390 23598,4390 23610,4390 23622,4390 23634,4379 23646,4379 23658,4379 23670,4379 23683,4379 23695,4379 23707,4379 23719,4379 23743,4379 23755,4379 23767,4379 23779,4379 23791,4379 23803,4379 23815,4379 23839,4379 23851,4379 23863,4379 23875,4379 23887,4379 23899,4379 23911,4379 23935,4379 23947,4368 23959,4368 23971,4368 23983,4368 23995,4368 24008,4368 24032,4368 24044,4368 24056,4356 24068,4356 24080,4356 24092,4356 24104,4356 24128,4356 24140,4356 24152,4356 24164,4356 24176,4356 24188,4356 24200,4356 24224,4356 24236,4356 24248,4356 24260,4356 24272,4356 24284,4356 24296,4356 24320,4356 24333,4356 24345,4356 24357,4356 24369,4356 24381,4356 24393,4356 24417,4356 24429,4356 24441,4356 24453,4356 24465,4356 24477,4356 24489,4356 24513,4356 24525,4356 24537,4356 24549,4356 24561,4356 24573,4356 24585,4356 24609,4356 24621,4356 24633,4356 24645,4356 24658,4356 24670,4356 24682,4356 24706,4356 24718,4356 24730,4356 24742,4356 24754,4356 24766,4356 24778,4356 24802,4356 24814,4356 24826,4356 24838,4356 24850,4356 24862,4356 24874,4356 24898,4356 24910,4356 24922,4356 24934,4356 24946,4356 24958,4356 24971,4356 24995,4356 25007,4356 25019,4356 25031,4356 25043,4356 25055,4356 25079,4356 25091,4356 25103,4345 25115,4345 25127,4345 25139,4345 25151,4345 25175,4345 25187,4345 25199,4345 25211,4345 25223,4345 25235,4345 25247,4345 25271,4345 25283,4345 25296,4345 25308,4345 25320,4345 25332,4345 25344,4345 25368,4345 25380,4345 25392,4345 25404,4345 25416,4345 25428,4345 25440,4345 25464,4345 25476,4345 25488,4345 25500,4345 25512,4345 25524,4345 25536,4345 25548,4334 25560,4334 25572,4334 25584,4334 25596,4334 25608,4322 25621,4322 25633,4322 25657,4322 25669,4322 25681,4322 25693,4322 25705,4322 25717,4322 25729,4322 25753,4322 25765,4322 25777,4322 25789,4322 25801,4322 25813,4311 25825,4311 25849,4311 25861,4311 25873,4311 25885,4311 25897,4311 25909,4311 25921,4311 25946,4311 25958,4311 25970,4300 25982,4300 25994,4300 26006,4300 26018,4300 26042,4300 26054,4300 26066,4300 26078,4300 26090,4300 26102,4300 26114,4300 26138,4300 26150,4300 26162,4300 26174,4300 26186,4300 26198,4300 26210,4300 26234,4300 26246,4300 26258,4300 26271,4300 26283,4300 26295,4300 26307,4300 26331,4277 26343,4277 26355,4277 26367,4277 26379,4277 26391,4277 26403,4277 26427,4277 26439,4277 26451,4277 26463,4277 26475,4277"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="2309" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">0</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5173" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">0.5</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="8327" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="11192" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">1.5</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="14346" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">2</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="17210" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">2.5</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="20365" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">3</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="23229" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">3.5</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="26383" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">4</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="29248" y="16021"><tspan fill="rgb(0,0,0)" stroke="none">4.5</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="1967" y="15574"><tspan fill="rgb(0,0,0)" stroke="none">0</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="1676" y="13300"><tspan fill="rgb(0,0,0)" stroke="none">0.2</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="1676" y="11026"><tspan fill="rgb(0,0,0)" stroke="none">0.4</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="1676" y="8751"><tspan fill="rgb(0,0,0)" stroke="none">0.6</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="1676" y="6477"><tspan fill="rgb(0,0,0)" stroke="none">0.8</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="1967" y="4203"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="1676" y="1929"><tspan fill="rgb(0,0,0)" stroke="none">1.2</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="459px" font-weight="400"><tspan class="TextPosition" x="13459" y="1019"><tspan fill="rgb(0,0,0)" stroke="none">Connectivity of a random graph</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(0,69,134)" stroke-width="80" stroke-linejoin="round" d="M 30505,8714 L 31305,8714"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="31405" y="8833"><tspan fill="rgb(0,0,0)" stroke="none">Column A</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="318px" font-weight="400"><tspan class="TextPosition" x="13279" y="16836"><tspan fill="rgb(0,0,0)" stroke="none">Average number of links per node</tspan></tspan></tspan></text>
<text class="TextShape" transform="translate(837,11858) rotate(-90) translate(-837,-11858)"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="318px" font-weight="400"><tspan class="TextPosition" x="837" y="11858"><tspan fill="rgb(0,0,0)" stroke="none">Fraction of all nodes in largest component</tspan></tspan></tspan></text>
</svg>
]]></Attribute_String><Attribute_String roleName="setup">${MODELNAME_DEFAULT},${SVGURI_DEFAULT}</Attribute_String></SvgClient>
</XholonWorkbook>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment