<feed xmlns='http://www.w3.org/2005/Atom'>
<title>inkscape/src/libvpsc/csolve_VPSC.cpp, branch livecoding</title>
<subtitle>An experimental livecoding plugin for Inkscape</subtitle>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/'/>
<entry>
<title>remove files that interface through C with libvpsc, we are using C++ so...</title>
<updated>2014-03-23T17:59:12+00:00</updated>
<author>
<name>Johan B. C. Engelen</name>
<email>jbc.engelen@swissonline.ch</email>
</author>
<published>2014-03-23T17:59:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=3a4bbd50a7b0f06b8bb126db2af10782d91eda28'/>
<id>3a4bbd50a7b0f06b8bb126db2af10782d91eda28</id>
<content type='text'>
(bzr r13191)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r13191)</pre>
</div>
</content>
</entry>
<entry>
<title>better fix</title>
<updated>2012-09-09T19:42:05+00:00</updated>
<author>
<name>Kris De Gussem</name>
<email>kris.degussem@gmail.com</email>
</author>
<published>2012-09-09T19:42:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=9f52a01c5a908dcacbfdbaa218400b43b036ffe8'/>
<id>9f52a01c5a908dcacbfdbaa218400b43b036ffe8</id>
<content type='text'>
(bzr r11659)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r11659)</pre>
</div>
</content>
</entry>
<entry>
<title>static code checking (fixes Bug #614227 )</title>
<updated>2012-09-09T19:31:12+00:00</updated>
<author>
<name>Kris De Gussem</name>
<email>kris.degussem@gmail.com</email>
</author>
<published>2012-09-09T19:31:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=1794e5ad61fda2fbb2da17897634b1c4dfcd012a'/>
<id>1794e5ad61fda2fbb2da17897634b1c4dfcd012a</id>
<content type='text'>
(bzr r11658)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r11658)</pre>
</div>
</content>
</entry>
<entry>
<title>Fixing more broken and split doc comments.</title>
<updated>2011-10-27T04:55:51+00:00</updated>
<author>
<name>Jon A. Cruz</name>
<email>jon@joncruz.org</email>
</author>
<published>2011-10-27T04:55:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=2633767789e4264b13ef91a684accf734fb4e94f'/>
<id>2633767789e4264b13ef91a684accf734fb4e94f</id>
<content type='text'>
(bzr r10697)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r10697)</pre>
</div>
</content>
</entry>
<entry>
<title>Applying fixes for gcc 4.3 build issues (closes LP: #169115)</title>
<updated>2008-01-31T19:06:59+00:00</updated>
<author>
<name>Bryce Harrington</name>
<email>bryce@bryceharrington.org</email>
</author>
<published>2008-01-31T19:06:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=06d8aaba21496e6a39a7c18dd82e0d3efbeb531c'/>
<id>06d8aaba21496e6a39a7c18dd82e0d3efbeb531c</id>
<content type='text'>
(bzr r4629)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(bzr r4629)</pre>
</div>
</content>
</entry>
<entry>
<title>- Connectors with end-markers now constrained to point downwards in graph layout</title>
<updated>2006-07-14T04:09:40+00:00</updated>
<author>
<name>Tim Dwyer</name>
<email>tgdwyer@gmail.com</email>
</author>
<published>2006-07-14T04:09:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=d18b8150ba16f4a930b213dae1f4fb369cb3d0bf'/>
<id>d18b8150ba16f4a930b213dae1f4fb369cb3d0bf</id>
<content type='text'>
 - vpsc namespace added to libvpsc

(bzr r1408)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - vpsc namespace added to libvpsc

(bzr r1408)</pre>
</div>
</content>
</entry>
<entry>
<title>Previously graph layout was done using the Kamada-Kawai layout algorithm </title>
<updated>2006-07-12T00:55:58+00:00</updated>
<author>
<name>Tim Dwyer</name>
<email>tgdwyer@gmail.com</email>
</author>
<published>2006-07-12T00:55:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.s-ol.nu/inkscape/commit/?id=12b21e1d27f43deaa748419919b40b80cedd0ddd'/>
<id>12b21e1d27f43deaa748419919b40b80cedd0ddd</id>
<content type='text'>
implemented in Boost.  I am replacing this with a custom implementation of
a constrained stress-majorization algorithm.

The stress-majorization algorithm is more robust and has better convergence
characteristics than Kamada-Kawai, and also simple constraints can be placed
on node position (for example, to enforce downward-pointing edges, non-overlap constraints, or cluster constraints).

Another big advantage is that we no longer need Boost.

I've tested the basic functionality, but I have yet to properly handle
disconnected graphs or to properly scale the resulting layout.

This commit also includes significant refactoring... the quadratic program solver - libvpsc (Variable Placement with Separation Constraints) has been moved to src/libvpsc and the actual graph layout algorithm is in libcola.

(bzr r1394)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
implemented in Boost.  I am replacing this with a custom implementation of
a constrained stress-majorization algorithm.

The stress-majorization algorithm is more robust and has better convergence
characteristics than Kamada-Kawai, and also simple constraints can be placed
on node position (for example, to enforce downward-pointing edges, non-overlap constraints, or cluster constraints).

Another big advantage is that we no longer need Boost.

I've tested the basic functionality, but I have yet to properly handle
disconnected graphs or to properly scale the resulting layout.

This commit also includes significant refactoring... the quadratic program solver - libvpsc (Variable Placement with Separation Constraints) has been moved to src/libvpsc and the actual graph layout algorithm is in libcola.

(bzr r1394)</pre>
</div>
</content>
</entry>
</feed>
