Aquileo | Recent changes to bugshttps://sourceforge.net/p/mutationfinder/bugs/2008-08-21T18:52:45ZRecent changes to bugsAquileo | Java Build2008-08-21T18:52:45Z2008-08-21T18:52:45ZRodrigo Rafael Villarreal Goularhttps://sourceforge.net/u/aonde/https://sourceforge.net27455de54d88dfcf4b9a25b650709acc181b5e8e<div class="markdown_content"><p>Hi!</p>
<p>I'm trying to build an Java version but the following error appears!</p>
<p>BUILD FAILED<br />
/home/rodrigo/temp/MutationFinder/java/ant/build.xml:250: /data/toolrepository/cobertura-1.7 not found.</p>
<p>It seems that /data/toolrepository/cobertura-1.7 is necessary ... </p>
<p>It is correct?</p></div>Aquileo | MIT license agreement needed on source files2007-07-27T02:29:04Z2007-07-27T02:29:04ZDavid Randolphhttps://sourceforge.net/u/rndlph/https://sourceforge.netb3f385bd75db176d69013e879b2d8678b27db80c<div class="markdown_content"><p>The MIT license agreement should be appear in all source files:</p>
<p># Copyright (c) 2007 Regents of the University of Colorado<br />
#<br />
# Permission is hereby granted, free of charge, to any person<br />
# obtaining a copy of this software and associated documentation<br />
# files (the "Software"), to deal in the Software without<br />
# restriction, including without limitation the rights to use,<br />
# copy, modify, merge, publish, distribute, sublicense, and/or sell<br />
# copies of the Software, and to permit persons to whom the<br />
# Software is furnished to do so, subject to the following<br />
# conditions:<br />
#<br />
# The above copyright notice and this permission notice shall be<br />
# included in all copies or substantial portions of the Software.<br />
#<br />
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,<br />
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES<br />
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND<br />
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT<br />
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,<br />
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING<br />
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR<br />
# OTHER DEALINGS IN THE SOFTWARE.<br />
#<br />
# Authors: Greg Caporaso (gregcaporaso@gmail.com)<br />
# David Randolph (rndlph@users.sourceforge.net).<br />
# William A. Baumgartner</p></div>Aquileo | Output file does not show up in the working directory2007-07-27T00:40:53Z2007-07-27T00:40:53ZAnonymoushttps://sourceforge.net/u/userid-None/https://sourceforge.net0b11c26dad492ced42463b1d59e80554d636fe77<div class="markdown_content"><p>Running in a Windows command (DOS) session, the output file is not showing up in . as the help statement says it will. Instead it shows up in the same directory as the input file.</p>
<p>I think the following code is at the root of the problem:</p>
<p>def filename_from_filepath(filepath):<br />
""" Strip the path off a filepath to get a filename"""<br />
try:<br />
return filepath[filepath.rindex('/')+1:]<br />
except ValueError:<br />
return filepath</p>
<p>Windows uses backslashes, so the basename above is the full path. </p></div>Aquileo | performance.py error when no positives (true or false) exist2007-07-06T01:05:51Z2007-07-06T01:05:51ZGreg Caporasohttps://sourceforge.net/u/gregcaporaso/https://sourceforge.netc1aeb966dfe3b647abc5906e5423d311743506ce<div class="markdown_content"><p>An uncaught exception occurs in pretty_precision_recall_fmeasure() in performance.py when precision and recall are both 0.0. </p>
<p>-----------------------------------<br />
Extracted Mentions<br />
-----------------------------------<br />
0.0 0.0 None<br />
Traceback (most recent call last):<br />
File "/Applications/MutationFinder/performance.py", line 487, in <module><br />
calculate_extracted_mentions(extractor_output))<br />
File "/Applications/MutationFinder/performance.py", line 193, in __str__<br />
self.pretty_precision_recall_fmeasure()])<br />
File "/Applications/MutationFinder/performance.py", line 187, in pretty_precision_recall_fmeasure<br />
% {'pre':self._p,'re':self._r,'fm':self._f})<br />
TypeError: float argument required</p></div>