Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
67 commits
Select commit Hold shift + click to select a range
6bbc25c
use modern pyproject package definition
nick-fournier Mar 28, 2025
7be2722
pin python to 3.8 for now
nick-fournier Mar 28, 2025
1d49c6f
Cleanup test runners
nick-fournier Mar 28, 2025
9bf8dc4
Allow hard constraints on balancer.
nick-fournier Mar 28, 2025
8ac131b
minor performance enhancements and bug fixes.
nick-fournier Mar 28, 2025
3ec970f
repop fix
nick-fournier Mar 28, 2025
9e6dee5
add oceanside repop example
nick-fournier Apr 2, 2025
80c38a0
Fix oceanside inputs
nick-fournier Apr 2, 2025
aadc2fd
bugfix summarize empty
nick-fournier Apr 2, 2025
70efe68
Major cleanup of tests and examples to share data and configs.
nick-fournier Apr 14, 2025
077556e
Pytests gitaction
nick-fournier Apr 14, 2025
475b8dd
Minor update to test gha
nick-fournier Apr 14, 2025
48af270
cleanup gha testing
nick-fournier Apr 14, 2025
6262619
disable linting for now.
nick-fournier Apr 14, 2025
e2c94ec
bugfix weighting test
nick-fournier Apr 14, 2025
e9bae6b
simplify test_steps
nick-fournier Apr 14, 2025
2e665d2
Normalize df to hash
nick-fournier Apr 14, 2025
5a21557
debug data hash.
nick-fournier Apr 15, 2025
5e61a06
debug
nick-fournier Apr 15, 2025
dc892d7
test
nick-fournier Apr 15, 2025
86dd98f
more debug
nick-fournier Apr 15, 2025
11048a6
test sorting
nick-fournier Apr 15, 2025
0614c66
debug
nick-fournier Apr 15, 2025
49264e3
further sort
nick-fournier Apr 15, 2025
f68a444
debug
nick-fournier Apr 15, 2025
b86cf01
debugging
nick-fournier Apr 15, 2025
0972171
more debug
nick-fournier Apr 15, 2025
d79c1c9
Revert "more debug"
nick-fournier Apr 15, 2025
37f5b97
Revert "debugging"
nick-fournier Apr 15, 2025
349229b
debug
nick-fournier Apr 15, 2025
cba2b6a
more debug...
nick-fournier Apr 15, 2025
57ae826
Linux - Windowx ortools bugfix.
nick-fournier Apr 15, 2025
b29441b
Cleanup tests and stabilize.
nick-fournier Apr 15, 2025
77eef56
Working refactor of activitysim pipeline into populationsim
nick-fournier Apr 16, 2025
814c5d0
linting
nick-fournier Apr 16, 2025
2dd9034
Possible fix for repop error.
nick-fournier Apr 17, 2025
b9811d4
Cleanup unused code
nick-fournier Apr 17, 2025
c9863ed
cleanup dependencies and test python versions
nick-fournier Apr 17, 2025
b421d87
Cleanup imports
nick-fournier Apr 17, 2025
c653536
Pinned versions to work with python 3.12
nick-fournier Apr 17, 2025
d421a47
Dropped support for Python 3.13 because ortools must be <=3.12
nick-fournier Apr 17, 2025
862d904
Cleaned up future warnings, expanded tests, and resurrected the lp_cv…
nick-fournier Apr 17, 2025
9c221a0
iter version
nick-fournier Apr 17, 2025
11f4720
Add pre-commit
nick-fournier Apr 17, 2025
0c92ac8
Fixed test bug.
nick-fournier Apr 17, 2025
92e976c
Import bugfix
nick-fournier May 25, 2025
bc37955
Numba balancer
nick-fournier May 26, 2025
c854bad
Implemented Numba for significant perf improvement. Need to cleanup S…
nick-fournier May 27, 2025
9742ee4
Test fix. But needs organizing in sub_balance and do_balance.
nick-fournier May 27, 2025
d30c8be
Update test_balancer.py
May 27, 2025
d588705
cleanup uv lock
nick-fournier May 27, 2025
099ff38
Merge branch 'develop' of github.com:RSGInc/populationsim into develop
nick-fournier May 27, 2025
6336002
Organize into modules
nick-fournier May 27, 2025
053731d
split numba functions
nick-fournier May 27, 2025
4964540
fixed import paths
nick-fournier May 27, 2025
f155ddd
more organizing
nick-fournier May 27, 2025
f1a90dc
Added configurable optimizer timeout parameter in settings. Also furt…
nick-fournier Jun 4, 2025
16c2f21
Cleanup unused code.
nick-fournier Jun 4, 2025
2d2290e
Added CLI option
nick-fournier Jun 12, 2025
d51a53d
Bugfix CLI option
nick-fournier Jun 25, 2025
4474f60
Bugfixes
nick-fournier Jul 18, 2025
21b9949
Revert "Bugfixes"
nick-fournier Jul 18, 2025
3d6fe19
Bugfix max delta
nick-fournier Jul 18, 2025
fbd218a
Hardcode constants instead of as args
nick-fournier Aug 13, 2025
160d8fd
Update pyproject.toml
Aug 14, 2025
8dbd23b
Fixed issue #196
nick-fournier Sep 12, 2025
e29221d
Merge branch 'master' into develop
nick-fournier Sep 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Import bugfix
  • Loading branch information
nick-fournier committed May 25, 2025
commit 92e976c4ce18cbf535126ddd2aa1e4bdf1518eae
2 changes: 1 addition & 1 deletion populationsim/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import time
from datetime import timedelta

from populationsim.core import config, inject, mem, pipeline, tracing
from .core import config, inject, mem, pipeline, tracing

logger = logging.getLogger(__name__)

Expand Down