<!--
RSS generated by JIRA (4.4#649-r158309) at Thu Jun 20 01:50:34 CDT 2013

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
http://dev.clojure.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+MATCH+AND+created%3E%3D-1w+ORDER+BY+created+DESC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://dev.clojure.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Clojure JIRA</title>
        <link>http://dev.clojure.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+MATCH+AND+created%3E%3D-1w+ORDER+BY+created+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="3" total="3"/>
                <build-info>
            <version>4.4</version>
            <build-number>649</build-number>
            <build-date>25-07-2011</build-date>
        </build-info>
<item>
            <title>[MATCH-73] irrelevant binding at leaf nodes</title>
                <link>http://dev.clojure.org/jira/browse/MATCH-73</link>
                <project id="10050" key="MATCH">core.match</project>
                        <description>&lt;p&gt;Patterns emit useless bindings at the leaf node, only named wildcards and :as patterns should be emitted.&lt;/p&gt;</description>
                <environment></environment>
            <key id="16240">MATCH-73</key>
            <summary>irrelevant binding at leaf nodes</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="dnolen">David Nolen</assignee>
                                <reporter username="dnolen">David Nolen</reporter>
                        <labels>
                    </labels>
                <created>Tue, 18 Jun 2013 23:44:13 -0500</created>
                <updated>Wed, 19 Jun 2013 00:14:50 -0500</updated>
                    <resolved>Wed, 19 Jun 2013 00:14:50 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="31310" author="dnolen" created="Wed, 19 Jun 2013 00:14:50 -0500"  >&lt;p&gt;fixed, &lt;a href=&quot;http://github.com/clojure/core.match/commit/9afc9c6001f8a187b5611c4ac11877b049b071f4&quot;&gt;http://github.com/clojure/core.match/commit/9afc9c6001f8a187b5611c4ac11877b049b071f4&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[MATCH-72] complexity analysis</title>
                <link>http://dev.clojure.org/jira/browse/MATCH-72</link>
                <project id="10050" key="MATCH">core.match</project>
                        <description>&lt;p&gt;For smaller matches avoid backtracking actually greatly improves performance at the potential cost of code size. Perhaps we can devise a heuristic such that we employ the the best option available? Would need some serious hammock time.&lt;/p&gt;</description>
                <environment></environment>
            <key id="16239">MATCH-72</key>
            <summary>complexity analysis</summary>
                <type id="4" iconUrl="http://dev.clojure.org/jira/images/icons/improvement.gif">Enhancement</type>
                                <priority id="4" iconUrl="http://dev.clojure.org/jira/images/icons/priority_minor.gif">Minor</priority>
                    <status id="1" iconUrl="http://dev.clojure.org/jira/images/icons/status_open.gif">Open</status>
                    <resolution id="-1">Unresolved</resolution>
                                <assignee username="dnolen">David Nolen</assignee>
                                <reporter username="dnolen">David Nolen</reporter>
                        <labels>
                    </labels>
                <created>Tue, 18 Jun 2013 22:22:13 -0500</created>
                <updated>Tue, 18 Jun 2013 22:22:13 -0500</updated>
                                                                            <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[MATCH-71] map patterns don&apos;t exhibit as much test sharing as expected</title>
                <link>http://dev.clojure.org/jira/browse/MATCH-71</link>
                <project id="10050" key="MATCH">core.match</project>
                        <description>&lt;p&gt;`map-pattern-match-1` in the test cases tests the value for :b only in the first line, it backtracks and considers :a instead of looking the second value for :b first.&lt;/p&gt;

&lt;p&gt;for example for:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;(match [x]
  [{:a _ :b 2}] :a0
  [{:a 1 :b 1}] :a1)&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The decision tree looks far too complicated.&lt;/p&gt;</description>
                <environment></environment>
            <key id="16238">MATCH-71</key>
            <summary>map patterns don&apos;t exhibit as much test sharing as expected</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="dnolen">David Nolen</assignee>
                                <reporter username="dnolen">David Nolen</reporter>
                        <labels>
                    </labels>
                <created>Tue, 18 Jun 2013 22:15:11 -0500</created>
                <updated>Tue, 18 Jun 2013 23:42:36 -0500</updated>
                    <resolved>Tue, 18 Jun 2013 23:42:36 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="31309" author="dnolen" created="Tue, 18 Jun 2013 23:42:36 -0500"  >&lt;p&gt;fixed, &lt;a href=&quot;http://github.com/clojure/core.match/commit/babb964413c2dc0058b4bb36f9a903a9de74f755&quot;&gt;http://github.com/clojure/core.match/commit/babb964413c2dc0058b4bb36f9a903a9de74f755&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>
</channel>
</rss>