<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brandes/src, branch master</title>
<subtitle>A parallel implementation of Brandes' algorithm for betweenness centrality
</subtitle>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/'/>
<entry>
<title>Refactor</title>
<updated>2017-01-06T21:55:23+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-06T21:55:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=df2c6a608a5b238e7b2e5265e05e48535e036263'/>
<id>df2c6a608a5b238e7b2e5265e05e48535e036263</id>
<content type='text'>
- Remove unnecessary include
- Improve whitespace
- Remove unnecessary variable declaration
- Move function call to more logical place
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove unnecessary include
- Improve whitespace
- Remove unnecessary variable declaration
- Move function call to more logical place
</pre>
</div>
</content>
</entry>
<entry>
<title>Optimalize by using vectors over maps and sets</title>
<updated>2017-01-06T20:57:28+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-06T20:57:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=ed0ac6791435c36e8374b218454ebfa7485f0845'/>
<id>ed0ac6791435c36e8374b218454ebfa7485f0845</id>
<content type='text'>
- Can iterate over vertices with for (int v = 0; v &lt; number_vertices;
v++) loop
- This required internally remapping the vertices from their actual
names to 0, 1, ..., number_vertices - 1.
- Use Graph::get_real_vertex(vertex) to get original value
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Can iterate over vertices with for (int v = 0; v &lt; number_vertices;
v++) loop
- This required internally remapping the vertices from their actual
names to 0, 1, ..., number_vertices - 1.
- Use Graph::get_real_vertex(vertex) to get original value
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug</title>
<updated>2017-01-05T18:49:33+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-05T18:49:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=dc88e19199f056d6f2e17c481737a71fcab70398'/>
<id>dc88e19199f056d6f2e17c481737a71fcab70398</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor</title>
<updated>2017-01-05T18:38:51+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-05T18:38:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=d29479e93370b577adeeb133116ced99dc4f81ff'/>
<id>d29479e93370b577adeeb133116ced99dc4f81ff</id>
<content type='text'>
- Reorder includes
- Unify reference style
- Improve whitespace
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Reorder includes
- Unify reference style
- Improve whitespace
</pre>
</div>
</content>
</entry>
<entry>
<title>Return vertices in a vector</title>
<updated>2017-01-05T17:49:54+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-05T17:31:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=1eae1a29340986fa5b8fca99bd797806891a511f'/>
<id>1eae1a29340986fa5b8fca99bd797806891a511f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to unordered maps and sets</title>
<updated>2017-01-05T16:52:19+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-05T05:26:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=98844eccedfb84fac46c83d59a1298cce491f77b'/>
<id>98844eccedfb84fac46c83d59a1298cce491f77b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement concurrent Brandes's algorithm</title>
<updated>2017-01-05T04:09:53+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-05T04:09:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=f0b144e5999441e5bf328991ef9fe2268d112687'/>
<id>f0b144e5999441e5bf328991ef9fe2268d112687</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Read edges until end of file</title>
<updated>2017-01-05T04:09:14+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-05T04:09:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=6b7244cfc47c4106fe769b4191416b389838a133'/>
<id>6b7244cfc47c4106fe769b4191416b389838a133</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Note existence of out edges</title>
<updated>2017-01-05T04:08:45+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-05T04:08:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=a13f7f90743ccdf72e4e3196e666a23c26b896ec'/>
<id>a13f7f90743ccdf72e4e3196e666a23c26b896ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement DependencyCalculator</title>
<updated>2017-01-04T20:20:48+00:00</updated>
<author>
<name>Marcin Chrzanowski</name>
<email>marcin.j.chrzanowski@gmail.com</email>
</author>
<published>2017-01-04T20:20:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.m-chrzan.xyz/brandes/commit/?id=17eae42992c8c2675993bca09c3e619456700122'/>
<id>17eae42992c8c2675993bca09c3e619456700122</id>
<content type='text'>
A DependencyCalculator instance will, for each vertex in the given
graph, calculate the dependency on the given vertex.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A DependencyCalculator instance will, for each vertex in the given
graph, calculate the dependency on the given vertex.
</pre>
</div>
</content>
</entry>
</feed>
