Home
last modified time | relevance | path

Searched refs:total_moves (Results 1 – 25 of 37) sorted by last modified time

12

/dports/games/sjeng/Sjeng-Free-11.2/
H A Dsjeng.c200 total_moves = 0; in main()
H A Dextvars.h102 extern unsigned long total_moves;
H A Dmoves.c28 unsigned long total_moves; variable
/dports/games/crafty/crafty-25.2_1/
H A Doption.c2241 total_moves = 0; in Option()
2246 printf("total moves=%" PRIu64 " time=%.2f\n", total_moves, time_used); in Option()
4018 total_moves++; in OptionPerft()
/dports/games/sgt-puzzles/puzzles-20220128.c43a34f/
H A Dtwiddle.c310 int total_moves; in new_game_desc() local
326 total_moves = params->movetarget; in new_game_desc()
327 if (!total_moves) in new_game_desc()
329 total_moves = w*h*n*n*2 + random_upto(rs, 2); in new_game_desc()
341 for (i = 0; i < total_moves; i++) { in new_game_desc()
/dports/games/freeciv/freeciv-2.6.6/common/
H A Dunit.c1859 int depth, outermost_moves_left, total_moves; in base_transporter_for_unit() member
1873 cur.total_moves = ptrans->moves_left + unit_move_rate(ptrans); in base_transporter_for_unit()
1879 cur.total_moves += ptranstrans->moves_left + unit_move_rate(ptranstrans); in base_transporter_for_unit()
1950 if (cur.total_moves > best.total_moves) { in base_transporter_for_unit()
/dports/games/freeciv-nox11/freeciv-2.6.6/common/
H A Dunit.c1859 int depth, outermost_moves_left, total_moves; in base_transporter_for_unit() member
1873 cur.total_moves = ptrans->moves_left + unit_move_rate(ptrans); in base_transporter_for_unit()
1879 cur.total_moves += ptranstrans->moves_left + unit_move_rate(ptranstrans); in base_transporter_for_unit()
1950 if (cur.total_moves > best.total_moves) { in base_transporter_for_unit()
/dports/games/pentobi/pentobi-19.1/libpentobi_mcts/
H A DAnalyzeGame.cpp38 unsigned total_moves = 0; in run() local
42 ++total_moves; in run()
71 progress_callback(move_number, total_moves); in run()
/dports/games/pysolfc/PySolFC-2.14.1/pysollib/tile/
H A Dtkstats.py640 _("Total moves in this game: ") + str(stats.total_moves) + "\n" +
/dports/games/pysolfc/PySolFC-2.14.1/pysollib/game/
H A D__init__.py392 total_moves = attr.ib(default=0) variable in GameStatsStruct
416 self.total_moves = 0
887 moves=(self.moves.index, self.stats.total_moves),
2183 moves = self.stats.total_moves
2186 self.stats.autoplay_moves += (self.stats.total_moves - moves)
2993 stats.total_moves += 1
3025 self.updateStatus(moves=(moves.index, self.stats.total_moves))
3045 self.stats.total_moves += 1
3049 self.updateStatus(moves=(self.moves.index, self.stats.total_moves))
3068 self.stats.total_moves += 1
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Cdbg.c412 int64_t total_moves = 0; in H5C_stats() local
464 total_moves += cache_ptr->moves[i]; in H5C_stats()
564 (long)total_insertions, (long)total_pinned_insertions, (long)total_moves); in H5C_stats()
/dports/games/pysolfc/PySolFC-2.14.1/pysollib/games/
H A Dlarasgame.py357 stats.total_moves = stats.total_moves + 1
365 self.updateStatus(moves=(moves.index, self.stats.total_moves))
386 self.stats.total_moves = self.stats.total_moves + 1
389 self.updateStatus(moves=(self.moves.index, self.stats.total_moves))
407 self.stats.total_moves = self.stats.total_moves + 1
410 self.updateStatus(moves=(self.moves.index, self.stats.total_moves))
/dports/graphics/py-mapclassify/mapclassify-2.4.3/mapclassify/
H A Dclassifiers.py2479 total_moves = 0
2483 total_moves = 0
2509 total_moves += n_moves
2510 if not total_moves:
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Ditem.cpp1527 double total_moves = ( hit_trials - num_all_hits ) * moves_per_attack; in effective_dps() local
1585 total_moves += crit_summary.first; in effective_dps()
1588 total_moves += summary.first; in effective_dps()
1590 return total_damage * to_moves<double>( 1_seconds ) / total_moves; in effective_dps()
H A Dactivity_actor.cpp2398 const int total_moves = item_move_cost( who, items.front().first ); in start() local
2399 act.moves_left = total_moves; in start()
2400 act.moves_total = total_moves; in start()
2470 const int total_moves = item_move_cost( who, items.front().first ); in finish() local
2471 act.moves_left = total_moves; in finish()
2472 act.moves_total = total_moves; in finish()
2640 act.moves_total = total_moves; in start()
2641 act.moves_left = total_moves; in start()
2689 jsout.member( "total_moves", total_moves ); in serialize()
2701 data.read( "moves_total", actor.total_moves ); in deserialize()
H A Dactivity_actor_definitions.h855 … std::vector<std::string> str_values ) : total_moves( moves ), monster_coords( coords ), in milk_activity_actor()
875 int total_moves {};
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/tests/
H A Deffective_dps_test.cpp23 int total_moves = 0; in weapon_dps_trials() local
52 total_moves += std::abs( attacker.get_moves() - before_moves ); in weapon_dps_trials()
58 return 100.0f * total_damage / total_moves; in weapon_dps_trials()
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/tests/
H A Deffective_dps_test.cpp23 int total_moves = 0; in weapon_dps_trials() local
52 total_moves += std::abs( attacker.get_moves() - before_moves ); in weapon_dps_trials()
58 return 100.0f * total_damage / total_moves; in weapon_dps_trials()
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/src/
H A Dactivity_actor_definitions.h855 … std::vector<std::string> str_values ) : total_moves( moves ), monster_coords( coords ), in milk_activity_actor()
875 int total_moves {};
H A Dactivity_actor.cpp2398 const int total_moves = item_move_cost( who, items.front().first ); in start() local
2399 act.moves_left = total_moves; in start()
2400 act.moves_total = total_moves; in start()
2470 const int total_moves = item_move_cost( who, items.front().first ); in finish() local
2471 act.moves_left = total_moves; in finish()
2472 act.moves_total = total_moves; in finish()
2640 act.moves_total = total_moves; in start()
2641 act.moves_left = total_moves; in start()
2689 jsout.member( "total_moves", total_moves ); in serialize()
2701 data.read( "moves_total", actor.total_moves ); in deserialize()
H A Ditem.cpp1527 double total_moves = ( hit_trials - num_all_hits ) * moves_per_attack; in effective_dps() local
1585 total_moves += crit_summary.first; in effective_dps()
1588 total_moves += summary.first; in effective_dps()
1590 return total_damage * to_moves<double>( 1_seconds ) / total_moves; in effective_dps()
/dports/games/pysolfc/PySolFC-2.14.1/pysollib/pysolgtk/
H A Dtkstats.py553 _('Total moves in this game: ') + str(stats.total_moves) + '\n' +
/dports/games/pysolfc/PySolFC-2.14.1/pysollib/tk/
H A Dtkstats.py641 _("Total moves in this game: ") + str(stats.total_moves) + "\n" +
/dports/games/pysolfc/PySolFC-2.14.1/pysollib/
H A Dapp_stat.py80 game.id, game.stats.total_moves, game_number, game_start_time)
/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/src/tmc/
H A Dtmc_move_handle.F891 REAL(KIND=dp) :: rnd_mv, total_moves local
898 total_moves = SUM(move_types%mv_weight(2:))
899 rnd_mv = total_moves*rnd

12