Skip to content

Commit

Permalink
fix: hardcode exposure to 30
Browse files Browse the repository at this point in the history
  • Loading branch information
maffettone committed Apr 13, 2024
1 parent 60264ac commit 2e7dfab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf_agents/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def measurement_plan(self, point: ArrayLike) -> Tuple[str, List, Dict]:
plan_kwargs : dict
Dictionary of keyword arguments to pass the plan, from a point to measure.
"""
return "agent_move_and_measure_hanukkah23", [], {"x": point[0], "y": point[1], "exposure": 5}
return "agent_move_and_measure_hanukkah23", [], {"x": point[0], "y": point[1], "exposure": 30}

def unpack_run(self, run) -> Tuple[Union[float, ArrayLike], Union[float, ArrayLike]]:
"""Unpacks a run by:
Expand Down

0 comments on commit 2e7dfab

Please sign in to comment.