You can subscribe to this list here.
| 2000 |
Jan
(3) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
|
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(10) |
Sep
(14) |
Oct
(1) |
Nov
(21) |
Dec
(13) |
| 2002 |
Jan
(17) |
Feb
(2) |
Mar
(1) |
Apr
(2) |
May
(4) |
Jun
(2) |
Jul
(4) |
Aug
|
Sep
(7) |
Oct
(4) |
Nov
(12) |
Dec
(39) |
| 2003 |
Jan
(28) |
Feb
(18) |
Mar
(7) |
Apr
(5) |
May
(23) |
Jun
(29) |
Jul
(23) |
Aug
(18) |
Sep
(1) |
Oct
(5) |
Nov
(3) |
Dec
|
| 2004 |
Jan
(7) |
Feb
(2) |
Mar
(2) |
Apr
(2) |
May
(8) |
Jun
(2) |
Jul
(8) |
Aug
(2) |
Sep
(4) |
Oct
(3) |
Nov
|
Dec
|
| 2005 |
Jan
(2) |
Feb
(2) |
Mar
(13) |
Apr
(2) |
May
(2) |
Jun
(2) |
Jul
(32) |
Aug
(7) |
Sep
(11) |
Oct
(8) |
Nov
(16) |
Dec
(2) |
| 2006 |
Jan
(3) |
Feb
(1) |
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
(3) |
Aug
(3) |
Sep
|
Oct
(6) |
Nov
(1) |
Dec
(10) |
| 2007 |
Jan
(7) |
Feb
(6) |
Mar
(1) |
Apr
(5) |
May
(4) |
Jun
(6) |
Jul
(20) |
Aug
(21) |
Sep
(12) |
Oct
(4) |
Nov
(12) |
Dec
(17) |
| 2008 |
Jan
(18) |
Feb
(6) |
Mar
(9) |
Apr
(13) |
May
(14) |
Jun
(8) |
Jul
(23) |
Aug
(31) |
Sep
(26) |
Oct
(10) |
Nov
(3) |
Dec
(79) |
| 2009 |
Jan
(63) |
Feb
(13) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
(2) |
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
(1) |
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
(2) |
Mar
(1) |
Apr
(2) |
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
|
From: SourceForge.net <no...@so...> - 2005-12-03 06:55:38
|
Bugs item #1372204, was opened at 2005-12-02 21:55 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1372204&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Kenrick Mock (kenrickm) Assigned to: Nobody/Anonymous (nobody) Summary: off by one for float parms in parameter file Initial Comment: There are inconsistent results for the number of runs with small floats. Sometimes the runs will include current==end, and sometimes the runs will exclude current==end. For example, in a parameter file such as the following: Parm { start: 0.80 end: 1.0 incr: 0.05 } The simulation generates runs for Parm = 0.8, 0.85, 0.9, and stops at 0.95. If start is changed to 0.85 then the simulation generates runs for Parm = 0.85, 0.9, 0.95, and stops at 1.0. This appears to stem from the code in increment() in AddIncrementer.java which is: curVal += incr; if (curVal > end) { retVal = false; curVal = start; } since curVal and end are both doubles, due to floating point inaccuracies sometimes curVal may be slightly larger than end and stop the run, when the two should be considered equal. A workaround is to make end equal to something like 1.0001. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1372204&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-28 22:14:31
|
Bugs item #1368655, was opened at 2005-11-28 14:10 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1368655&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Excess Demos directory Initial Comment: There is a "demos" folder in my distribution and it has, e.g. heatBugs/src/uchicago/src/repastdemos/heatBugs but the final "heatBugs" is empty. Same with all the other demos. This is confusing. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1368655&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-19 03:20:15
|
Bugs item #1334317, was opened at 10/21/05 09:19 Message generated for change (Comment added) made by sf-robot You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334317&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None >Status: Closed Resolution: Accepted Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: DL File format Initial Comment: Bug Report from Zhu, Mengxiao. When you export the DL file of the network, the format of that DL file is not correct. It works only for Pajek. DL file requested by NetDraw requires it begin with "DL". Suggestion: You can just put DL in the first line and all the other data after the matrix of network. ---------------------------------------------------------------------- >Comment By: SourceForge Robot (sf-robot) Date: 11/18/05 19:20 Message: Logged In: YES user_id=1312539 This Tracker item was closed automatically by the system. It was previously set to a Pending status, and the original submitter did not respond within 14 days (the time period specified by the administrator of this Tracker). ---------------------------------------------------------------------- Comment By: Jerry Vos (jerryvos) Date: 11/04/05 12:38 Message: Logged In: YES user_id=1093815 Just have to do a test of this, but I believe this is fixed. Thanks for the pointer on fixing it. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334317&group_id=1703 |
|
From: gianfranco g. <giu...@de...> - 2005-11-17 13:36:39
|
Il giorno mar, 15/11/2005 alle 15.22 +0100, Pablo Chacin ha scritto: > Dear Program Committee member, >=20 > We would like to remind you that the submission deadline for Agent based > Grid Computing (AGC) is approaching -- 1 December 2005 (see also the > workshop website: http://users.cs.cf.ac.uk/O.F.Rana/agc2006/). We would > be delighted if you can contributed to the track's success by submitting > papers, as well as by forwarding the attached Call for Papers to your > research groups and mailing lists. >=20 > Kind regards, >=20 > Workshop co-organisers, > Bjoern Schnizler, Liviu Joita and Pablo Chacin >=20 > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ >=20 > -------------------CALL FOR PAPERS-------------------- > Agent based Grid Computing > at=20 > 6th IEEE International Symposium on Cluster Computing and the Grid=20 > (CCGrid 2006)=20 > May, 16-19, 2006, Singapore=20 > http://www.cs.cf.ac.uk/agc2006/=20 > ------------------------------------------------------- >=20 > DESCRIPTION=20 > Grid Computing is an active research area which promises to provide a > flexible=20 > infrastructure for complex, dynamic and distributed resource sharing. > Recent=20 > research on Grid has largely focused on issues of performance, > scalability and=20 > standardisation. Managing access to computing and data resources is a > complex=20 > and time consuming task. As Grid computing matures, deciding which > systems to=20 > use, where the data resides for a particular application domain, how to > migrate=20 > the data to the point of computation (or vice versa), and data rates > required to=20 > maintain a particular application behaviour become significant. There > are still=20 > issues to be tackled such as: semantically enhanced service descriptions > and=20 > specification of resources, autonomy, collaboration and economic > models,=20 > self-organisation and learning, intelligence and adaptability. Many of > these=20 > research areas offer new opportunities to Grid Computing researchers. > Some have=20 > already been addressed within the multi-agent systems community.=20 > Agent and multi-agent technologies provide a promising approach to make > Grid=20 > technologies and solutions based on Grid and Cluster technologies > smarter, more=20 > flexible, and adaptable. Often, within the multi-agent community, agents > are=20 > restricted to small numbers of agents -- and often agents undertake > similar tasks.=20 > To support Grid computing, agents can offer different roles, be > organised into=20 > dynamic "groups", and be able to migrate between groups to support load > balancing.=20 > Therefore agents could play an important role in Grid Computing, and > Grid Computing > can offer useful testbeds for investigating Agent services. The Grid is > not only a=20 > low level infrastructure for supporting computation, but can also > facilitate and=20 > enable information and knowledge sharing at the higher semantic levels, > to support=20 > knowledge integration and dissemination.=20 > The aim of this workshop is to bring together infrastructure developers, > applications=20 > developers, and researchers, who are working towards the vision of a > Grid using agent=20 > and multi-agent based technologies. The workshop will also aim to > inspire and encourage=20 > collaboration between these two communities.=20 >=20 >=20 > TOPIC OF INTERESTS > Authors are encouraged (but not restricted) to submit in the following > areas:=20 >=20 > -Performance analysis/modeling of multi-agent communities=20 > -Performance enhancement methodologies for mobile and multi-agent > systems=20 > -Agent frameworks and infrastructure to support the Grid=20 > -Software engineering support for scalable multi-agent systems=20 > -Support for managing and establishing multi-agent communities=20 > -Approaches for managing Grid systems (such as nature-inspired > approaches) > -Grid Economics and Business Models > -Supporting service discovery and service management using agent-based > approaches > -Recommender agents for scientific problem solving=20 > -Ontology support for scientific applications=20 > -Integrating ontologies with Grid Services=20 > -Agent-based resource and service management in Grid environments=20 > -Agent-based load balancing and metacomputing support=20 > -Agent-based network monitoring and characterisation=20 > -Data migration and management via agents=20 > -Grid markets mechanisms and agent-based technologies=20 > -Agent-based computational economics=20 > -Agent application in simulation environments=20 > -Modeling of economic systems using agent-based paradigms=20 > -Empirical results using agent-based simulation environments=20 > -Environment description and metric definitions for Grid simulations=20 > -Evaluation of dynamic pricing and trading mechanisms using autonomous > agents=20 > -Generation of knowledge in complex decision situations using autonomous > agents=20 >=20 > Experience reports and application demonstrators are particularly > welcomed.=20 >=20 > SUBMISSION DETAILS > Authors should submit papers of not more than 8 pages of double column > text using single=20 > spaced 10 point size type on 8.5 x 11 inch pages, as per IEEE 8.5 x 11 > manuscript=20 > guidelines (see http://www.computer.org/cspress/instruct.htm for > instructions).=20 > -All papers must be original work authorized to be released.=20 > -No submission of material that has been previously published.=20 > -Papers must be written in English language.=20 >=20 > Authors should submit a PostScript (level 2) or PDF file that will print > on a PostScript=20 > printer. Please do not embed specialist fonts (such as Asian fonts) in > the PDF. Electronic=20 > submission by e-mail is strongly encouraged. Hard copies should be sent > only if electronic=20 > submission is not possible. Submission implies the willingness of at > least one of the=20 > authors to register and present the paper. Please e-mail your papers to=20 > Liviu Joita - l....@cs..., Bjoern Scnhizler - > Bjo...@iw...,=20 > or Pablo Chacin - pc...@ac..., which is the preferred method for > submission.=20 > Put AGC-CCGrid2006-Workshop in the e-mail subject. > In addition, authors should submit an ASCII abstract, with the following > information: title of=20 > paper; names and affiliations of authors; name, email, snail mail, phone > number, and fax number=20 > of primary contact. The same information should be included on the first > page of submitted papers.=20 > Submitted papers will be reviewed by the program committee. >=20 > PAPER PROCEEDINGS=20 > Papers are expected to be published in the conference proceedings by > IEEE Computer Society. >=20 > IMPORTANT DATES=20 > Submission of papers: 1st December 2005 > Notification of acceptance: 22nd January 2006 > Camera ready version: 15th February 2006=20 >=20 > WORKSHOP CHAIRS/ORGANISERS > Pablo Chacin=20 > Universitat Polit=EF=BF=BDnica de Catalunya=20 > Departament d'Arquitectura de Computadors=20 > UPC Campus Nord, Despatx C6-002 > Jordi Girona, 1-3=20 > 08034 Barcelona,=20 > Spain=20 > Email: pc...@ac... =20 > Tel: +34 (0) 93 4011055=20 > Fax: +34 (0) 93 4017055=20 >=20 > Liviu Joita (Primary Contact) > Cardiff University,=20 > School of Computer Science and Welsh e-Science Centre=20 > Queen's Buildings > 5 The Parade, Roath > Cardiff CF24 3AA > UK=20 > Email: L....@cs... > Tel: +44 (0) 29 20874000 Extension No.: 77399=20 > Fax: +44 (0) 29 20874598=20 >=20 > Bjoern Schnizler=20 > University of Karlsruhe (TH)=20 > Information Management and Systems=20 > Englerstra=EF=BF=BD 14=20 > 76131 Karlsruhe=20 > Germany=20 > Email: Bjo...@iw... > Tel: +49 (0) 721 6088385=20 > Fax: +49 (0) 721 6088399=20 >=20 > STEERING COMMITTEE > Torsten Eymann, University of Bayreuth, Germany=20 > Omer F. Rana, Cardiff University, UK=20 > Daniel Veit, University of Karlsruhe, Germany=20 >=20 > PROGRAM COMMITTEE (as on October 11, 2005) >=20 > -Mark Baker, University of Portsmouth, UK > -Bernhard Bauer, University of Augsburg, Germany > -Rajkumar Buyya, The University of Melbourne, Australia > -Geoffrey Fox, University of Indiana, USA > -Felix Freitag, University of Catalonia, Spain > -Vladimir Getov, University of Westminster, UK > -Gianfranco Giulioni, Universita Politecnica delle Marche Ancona, Italy > -Sverker Janson, Swedish Institute of Computer Science - SICS, Sweden > -Chris Kenyon, IBM Zurich Research Lab, Switzerland > -Heiko Ludwig, IBM Research, USA > -Beniamino Di Martino, Second University of Naples, Italy > -Leandro Navarro, University of Catalonia, Spain > -Dirk Neumann, University of Karlsruhe, Germany > -Giselher Pankratz, The FernUniversitaet Hagen, Germany > -Line Catherine Pouchard, Oak Ridge National Laboratory, USA=20 > -Fehti Rabhi, University of New South Wales, Australia > -Simon Chong-Wee See, Sun Microsystem Inc., Singapore > -Steffen Staab, University of Koblenz, Germany > -Jan Staellaert, University of Connecticut, USA > -York Sure, University of Karlsruhe, Germany > -Niranjan Suri, Institute for Human & Machine Cognition IHMC, USA > -Christof Weinhardt, University of Karlsruhe, Germany > -Floriano Zini, ITC-irst, Trento, Italy >=20 >=20 |
|
From: SourceForge.net <no...@so...> - 2005-11-15 11:33:15
|
Bugs item #1357290, was opened at 2005-11-15 11:33 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1357290&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast Py Group: None Status: Open Resolution: None Priority: 5 Submitted By: Neil (nklepeis1) Assigned to: Nobody/Anonymous (nobody) Summary: Display Drawing Errors Initial Comment: I create the model for the RepastPy tutorial #3. When I change the size of the network display, e.g., in the editor from 400x400 to 800x600 pixels in the, the node labels are no longer drawn in the center of the nodes. The same happens if I keep the same specified size but drag on the corner of the display window. System: Linux Fedora Core 3 Java jre1.5 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1357290&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-15 11:25:30
|
Bugs item #1357281, was opened at 2005-11-15 11:24 Message generated for change (Settings changed) made by nklepeis1 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1357281&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast Py Group: None Status: Open Resolution: None Priority: 5 Submitted By: Neil (nklepeis1) Assigned to: Nobody/Anonymous (nobody) >Summary: Can't Add New Sequence Graph Series Initial Comment: Create new network model Add agent Add sequence graph Click on "New Action" under "Edit Series" in Sequency Graph I get the following output. It is not possible to add a new series, although opening old models with existing series is fine. Sorry if this is an old and obvious bug but I am new to repast and I didn't see anything about it anywhere. Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at uchicago.src.simbuilder.beans.network.ActionNameDialog.getName(ActionNameDialog.java:85) at com.sun.java.swing.plaf.gtk.GTKStyleFactory.getMatchingStyles(Unknown Source) at com.sun.java.swing.plaf.gtk.GTKStyleFactory._getStyle(Unknown Source) at com.sun.java.swing.plaf.gtk.GTKStyleFactory.getStyle(Unknown Source) at javax.swing.plaf.synth.SynthLookAndFeel.getStyle(Unknown Source) at javax.swing.plaf.synth.SynthLookAndFeel.updateStyle(Unknown Source) at javax.swing.plaf.synth.SynthPanelUI.updateStyle(Unknown Source) at javax.swing.plaf.synth.SynthPanelUI.installDefaults(Unknown Source) at javax.swing.plaf.basic.BasicPanelUI.installUI(Unknown Source) at javax.swing.plaf.synth.SynthPanelUI.installUI(Unknown Source) at javax.swing.JComponent.setUI(Unknown Source) at javax.swing.JPanel.setUI(Unknown Source) at javax.swing.JPanel.updateUI(Unknown Source) at javax.swing.JPanel.<init>(Unknown Source) at javax.swing.JPanel.<init>(Unknown Source) at uchicago.src.simbuilder.beans.network.ActionNameDialog.<init>(ActionNameDialog.java:33) at uchicago.src.simbuilder.beans.SequencePropertyPanel.doNew(SequencePropertyPanel.java:371) at uchicago.src.simbuilder.beans.SequencePropertyPanel.access$200(Sequen [snipped...] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1357281&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-15 11:24:20
|
Bugs item #1357281, was opened at 2005-11-15 11:24 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1357281&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast Py Group: None Status: Open Resolution: None Priority: 5 Submitted By: Neil (nklepeis1) Assigned to: Nobody/Anonymous (nobody) Summary: Can Initial Comment: Create new network model Add agent Add sequence graph Click on "New Action" under "Edit Series" in Sequency Graph I get the following output. It is not possible to add a new series, although opening old models with existing series is fine. Sorry if this is an old and obvious bug but I am new to repast and I didn't see anything about it anywhere. Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at uchicago.src.simbuilder.beans.network.ActionNameDialog.getName(ActionNameDialog.java:85) at com.sun.java.swing.plaf.gtk.GTKStyleFactory.getMatchingStyles(Unknown Source) at com.sun.java.swing.plaf.gtk.GTKStyleFactory._getStyle(Unknown Source) at com.sun.java.swing.plaf.gtk.GTKStyleFactory.getStyle(Unknown Source) at javax.swing.plaf.synth.SynthLookAndFeel.getStyle(Unknown Source) at javax.swing.plaf.synth.SynthLookAndFeel.updateStyle(Unknown Source) at javax.swing.plaf.synth.SynthPanelUI.updateStyle(Unknown Source) at javax.swing.plaf.synth.SynthPanelUI.installDefaults(Unknown Source) at javax.swing.plaf.basic.BasicPanelUI.installUI(Unknown Source) at javax.swing.plaf.synth.SynthPanelUI.installUI(Unknown Source) at javax.swing.JComponent.setUI(Unknown Source) at javax.swing.JPanel.setUI(Unknown Source) at javax.swing.JPanel.updateUI(Unknown Source) at javax.swing.JPanel.<init>(Unknown Source) at javax.swing.JPanel.<init>(Unknown Source) at uchicago.src.simbuilder.beans.network.ActionNameDialog.<init>(ActionNameDialog.java:33) at uchicago.src.simbuilder.beans.SequencePropertyPanel.doNew(SequencePropertyPanel.java:371) at uchicago.src.simbuilder.beans.SequencePropertyPanel.access$200(Sequen [snipped...] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1357281&group_id=1703 |
|
From: Mark R. D. <mdi...@la...> - 2005-11-07 14:10:37
|
Hello everyone, I've been away on other projects for some time and wanted to touch base on the status of RePast. Mostly I was wondering what ever became of the work Laszlo Gulya, Tom Howe and myself had worked on concerning Topologies? I notice the codebase has been removed from the cvs tree (not a complaint, I understand development sometimes involves cleanup). Gulya pointed out that some of it had been taken into RePasts space library, I'm just curious about this so I can know where things have evolved to. -Mark Diggory |
|
From: SourceForge.net <no...@so...> - 2005-11-05 00:21:12
|
Bugs item #1348387, was opened at 2005-11-04 09:36 Message generated for change (Comment added) made by jerryvos You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None >Status: Open >Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: simulation does not reinitialize Initial Comment: Reinitializing the model (after finishing one run) blocks RePast 3.1 if the setup method in the model class calls System.out.println(). My e-mail address: rad...@ep... ---------------------------------------------------------------------- >Comment By: Jerry Vos (jerryvos) Date: 2005-11-04 18:21 Message: Logged In: YES user_id=1093815 Reopening because of the below comments. ---------------------------------------------------------------------- Comment By: Reuben Grinberg (reubgr) Date: 2005-11-04 14:34 Message: Logged In: YES user_id=174152 I'm not sure that's the best solution. Output won't necessarily appear when it is expected. A common debugging technique is to use printouts: print "A" do something print "B" do something else etc... using invokeLater means that what is printed and where thigs go wrong may not be correlated, making debugging very difficult. invokeAndWait isn't the problem - it's that the console is non-existent or hidden. There are other, more correct ways to fix this (In my opinion). ---------------------------------------------------------------------- Comment By: Jerry Vos (jerryvos) Date: 2005-11-04 14:30 Message: Logged In: YES user_id=1093815 Thanks for reporting this. The problem was with RepastConsole. It was using a SwingUtilities.invokeAndWait instead of a SwingUtilities.invokeLater. I believe the problem is it was trying to update a non-existant or hidden Repast console. In any case, it appears to be fixed in CVS now. This fix will be in the next Repast release. ---------------------------------------------------------------------- Comment By: Reuben Grinberg (reubgr) Date: 2005-11-04 13:27 Message: Logged In: YES user_id=174152 This might have something to do with the updated Console code that I wrote this summer. Someone else incorporated it into Repast though - I don't remember who. ---------------------------------------------------------------------- Comment By: S Phelps (sphelps) Date: 2005-11-04 13:17 Message: Logged In: YES user_id=379878 I also observe this. Note that this is a new bug- the same model run under 3.0 reinitialises ok. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 20:38:37
|
Bugs item #1334317, was opened at 2005-10-21 11:19 Message generated for change (Comment added) made by jerryvos You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334317&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None >Status: Pending >Resolution: Accepted Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: DL File format Initial Comment: Bug Report from Zhu, Mengxiao. When you export the DL file of the network, the format of that DL file is not correct. It works only for Pajek. DL file requested by NetDraw requires it begin with "DL". Suggestion: You can just put DL in the first line and all the other data after the matrix of network. ---------------------------------------------------------------------- >Comment By: Jerry Vos (jerryvos) Date: 2005-11-04 14:38 Message: Logged In: YES user_id=1093815 Just have to do a test of this, but I believe this is fixed. Thanks for the pointer on fixing it. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334317&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 20:34:54
|
Bugs item #1348387, was opened at 2005-11-04 15:36 Message generated for change (Comment added) made by reubgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Closed Resolution: Fixed Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: simulation does not reinitialize Initial Comment: Reinitializing the model (after finishing one run) blocks RePast 3.1 if the setup method in the model class calls System.out.println(). My e-mail address: rad...@ep... ---------------------------------------------------------------------- Comment By: Reuben Grinberg (reubgr) Date: 2005-11-04 20:34 Message: Logged In: YES user_id=174152 I'm not sure that's the best solution. Output won't necessarily appear when it is expected. A common debugging technique is to use printouts: print "A" do something print "B" do something else etc... using invokeLater means that what is printed and where thigs go wrong may not be correlated, making debugging very difficult. invokeAndWait isn't the problem - it's that the console is non-existent or hidden. There are other, more correct ways to fix this (In my opinion). ---------------------------------------------------------------------- Comment By: Jerry Vos (jerryvos) Date: 2005-11-04 20:30 Message: Logged In: YES user_id=1093815 Thanks for reporting this. The problem was with RepastConsole. It was using a SwingUtilities.invokeAndWait instead of a SwingUtilities.invokeLater. I believe the problem is it was trying to update a non-existant or hidden Repast console. In any case, it appears to be fixed in CVS now. This fix will be in the next Repast release. ---------------------------------------------------------------------- Comment By: Reuben Grinberg (reubgr) Date: 2005-11-04 19:27 Message: Logged In: YES user_id=174152 This might have something to do with the updated Console code that I wrote this summer. Someone else incorporated it into Repast though - I don't remember who. ---------------------------------------------------------------------- Comment By: S Phelps (sphelps) Date: 2005-11-04 19:17 Message: Logged In: YES user_id=379878 I also observe this. Note that this is a new bug- the same model run under 3.0 reinitialises ok. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 20:30:17
|
Bugs item #1348387, was opened at 2005-11-04 09:36 Message generated for change (Comment added) made by jerryvos You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: simulation does not reinitialize Initial Comment: Reinitializing the model (after finishing one run) blocks RePast 3.1 if the setup method in the model class calls System.out.println(). My e-mail address: rad...@ep... ---------------------------------------------------------------------- >Comment By: Jerry Vos (jerryvos) Date: 2005-11-04 14:30 Message: Logged In: YES user_id=1093815 Thanks for reporting this. The problem was with RepastConsole. It was using a SwingUtilities.invokeAndWait instead of a SwingUtilities.invokeLater. I believe the problem is it was trying to update a non-existant or hidden Repast console. In any case, it appears to be fixed in CVS now. This fix will be in the next Repast release. ---------------------------------------------------------------------- Comment By: Reuben Grinberg (reubgr) Date: 2005-11-04 13:27 Message: Logged In: YES user_id=174152 This might have something to do with the updated Console code that I wrote this summer. Someone else incorporated it into Repast though - I don't remember who. ---------------------------------------------------------------------- Comment By: S Phelps (sphelps) Date: 2005-11-04 13:17 Message: Logged In: YES user_id=379878 I also observe this. Note that this is a new bug- the same model run under 3.0 reinitialises ok. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 19:27:32
|
Bugs item #1348387, was opened at 2005-11-04 15:36 Message generated for change (Comment added) made by reubgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: simulation does not reinitialize Initial Comment: Reinitializing the model (after finishing one run) blocks RePast 3.1 if the setup method in the model class calls System.out.println(). My e-mail address: rad...@ep... ---------------------------------------------------------------------- Comment By: Reuben Grinberg (reubgr) Date: 2005-11-04 19:27 Message: Logged In: YES user_id=174152 This might have something to do with the updated Console code that I wrote this summer. Someone else incorporated it into Repast though - I don't remember who. ---------------------------------------------------------------------- Comment By: S Phelps (sphelps) Date: 2005-11-04 19:17 Message: Logged In: YES user_id=379878 I also observe this. Note that this is a new bug- the same model run under 3.0 reinitialises ok. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 19:17:35
|
Bugs item #1348387, was opened at 2005-11-04 15:36 Message generated for change (Comment added) made by sphelps You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: simulation does not reinitialize Initial Comment: Reinitializing the model (after finishing one run) blocks RePast 3.1 if the setup method in the model class calls System.out.println(). My e-mail address: rad...@ep... ---------------------------------------------------------------------- Comment By: S Phelps (sphelps) Date: 2005-11-04 19:17 Message: Logged In: YES user_id=379878 I also observe this. Note that this is a new bug- the same model run under 3.0 reinitialises ok. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 18:08:35
|
Bugs item #1348396, was opened at 2005-11-04 09:43 Message generated for change (Settings changed) made by jerryvos You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348396&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None >Status: Closed >Resolution: Duplicate Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: bug in SimGraphics.drawString() Initial Comment: The coordinates used by SimGraphics.drawString() are not computed corectly. They are multiplied one more time with the scaling constant resulting in a misplaced string. My e-mail address: rad...@ep... ---------------------------------------------------------------------- >Comment By: Jerry Vos (jerryvos) Date: 2005-11-04 12:08 Message: Logged In: YES user_id=1093815 Dup of bug 1208606 "People images / text in adapatation demos" Fixed in cvs. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348396&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 15:43:08
|
Bugs item #1348396, was opened at 2005-11-04 07:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348396&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: bug in SimGraphics.drawString() Initial Comment: The coordinates used by SimGraphics.drawString() are not computed corectly. They are multiplied one more time with the scaling constant resulting in a misplaced string. My e-mail address: rad...@ep... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348396&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-11-04 15:37:52
|
Bugs item #1348387, was opened at 2005-11-04 07:36 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: simulation does not reinitialize Initial Comment: Reinitializing the model (after finishing one run) blocks RePast 3.1 if the setup method in the model class calls System.out.println(). My e-mail address: rad...@ep... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1348387&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 22:24:06
|
Bugs item #1334543, was opened at 2005-10-21 17:20 Message generated for change (Comment added) made by jerryvos You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334543&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed Resolution: None Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: Removing and then adding in a display causes an exception Initial Comment: Reported by Ken (kmz...@earthlink) I would like to turn a Displayable on and off in my model. [Using the drop down menu to do this is not acceptable because the menu does not stay visible while the model runs.] It seems that I can remove a Displayable, but when I add that same Displayable again, I get an error that there is already a menu item for that Displayable. OK, well how can I remove the menu item then? Here is a trivial example: dsurf.addDisplayable(display, "temp"); dsurf.removeDisplayable(display); dsurf.addDisplayable(display, "temp"); Exception: Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: Display Surface already contains a menu item with this menu text ---------------------------------------------------------------------- >Comment By: Jerry Vos (jerryvos) Date: 2005-10-21 17:24 Message: Logged In: YES user_id=1093815 Bug in the release. Things weren't getting entirely removed in the remove. Possible workaround: Add extra stuff to the display name since that's what's not getting totally deleted. dsurf.addDisplayable(display, "Display Title" + (staticInt++)); where staticInt is some static variable in the class. Fixed in CVS. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334543&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 22:20:05
|
Bugs item #1334543, was opened at 2005-10-21 17:20 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334543&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: Removing and then adding in a display causes an exception Initial Comment: Reported by Ken (kmz...@earthlink) I would like to turn a Displayable on and off in my model. [Using the drop down menu to do this is not acceptable because the menu does not stay visible while the model runs.] It seems that I can remove a Displayable, but when I add that same Displayable again, I get an error that there is already a menu item for that Displayable. OK, well how can I remove the menu item then? Here is a trivial example: dsurf.addDisplayable(display, "temp"); dsurf.removeDisplayable(display); dsurf.addDisplayable(display, "temp"); Exception: Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: Display Surface already contains a menu item with this menu text ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334543&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 16:24:18
|
Bugs item #1334320, was opened at 2005-10-21 11:22 Message generated for change (Comment added) made by jerryvos You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334320&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: Installer errors Initial Comment: From Eric Tatara: 1. On installation of the RePast suite, an error "cannot append '' " appears. If the user clicks "OK", the installation continues normally without causing any apparent problems. We speculated that the installer is trying to append paths to non-existant environment variables. 2. The shortcut to the "How To" document in the windows program folder Repast3/RepastJ/docs is not linked to the actual file. ---------------------------------------------------------------------- >Comment By: Jerry Vos (jerryvos) Date: 2005-10-21 11:24 Message: Logged In: YES user_id=1093815 The appending error most likely is when writing the visual studio templates. It probably can't find the file meaning they're trying to install the visual studio templates without visual studio installed, but maybe not. I think I remember seeing this problem before and fixing it so make sure all installers are up to date. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334320&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 16:22:48
|
Bugs item #1334320, was opened at 2005-10-21 11:22 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334320&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: Installer errors Initial Comment: From Eric Tatara: 1. On installation of the RePast suite, an error "cannot append '' " appears. If the user clicks "OK", the installation continues normally without causing any apparent problems. We speculated that the installer is trying to append paths to non-existant environment variables. 2. The shortcut to the "How To" document in the windows program folder Repast3/RepastJ/docs is not linked to the actual file. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334320&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 16:21:12
|
Bugs item #1334318, was opened at 2005-10-21 11:20 Message generated for change (Comment added) made by jerryvos You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334318&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast Py Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: Model name display Initial Comment: Bug report from Zhu, Mengxiao: In the 1.2 version of Repast Py, when you creat a model and change the name of the model, the name dispalyed at the left side doesn't change automatically. It was correct in the version 1.1.1. ---------------------------------------------------------------------- >Comment By: Jerry Vos (jerryvos) Date: 2005-10-21 11:21 Message: Logged In: YES user_id=1093815 Again reported by Eric Tatara: In RePast Py, we created a new project and changed the model's name from the default value. When the file is saved, the displayed model name reverts to the default name. If RePast Py is closed, restarted and the file is opened, the new model name is shown correctly. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334318&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 16:20:18
|
Bugs item #1334318, was opened at 2005-10-21 11:20 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334318&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast Py Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: Model name display Initial Comment: Bug report from Zhu, Mengxiao: In the 1.2 version of Repast Py, when you creat a model and change the name of the model, the name dispalyed at the left side doesn't change automatically. It was correct in the version 1.1.1. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334318&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 16:19:13
|
Bugs item #1334317, was opened at 2005-10-21 11:19 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334317&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jerry Vos (jerryvos) Assigned to: Nobody/Anonymous (nobody) Summary: DL File format Initial Comment: Bug Report from Zhu, Mengxiao. When you export the DL file of the network, the format of that DL file is not correct. It works only for Pajek. DL file requested by NetDraw requires it begin with "DL". Suggestion: You can just put DL in the first line and all the other data after the matrix of network. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334317&group_id=1703 |
|
From: SourceForge.net <no...@so...> - 2005-10-21 16:16:31
|
Bugs item #1334316, was opened at 2005-10-21 09:16 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334316&group_id=1703 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Repast J Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Multi-run initial message Initial Comment: The Monte Carlo system currently forces a File Open dialog to appear when the Mote Carlo button is first pressed. This forces users who are about to create a new Mote Carlo configuration to press the Cancel button to proceed. This is confusing. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=101703&aid=1334316&group_id=1703 |