{"id":21433579,"url":"https://github.com/limix/brent-search","last_synced_at":"2026-01-03T07:38:33.280Z","repository":{"id":60720801,"uuid":"71844382","full_name":"limix/brent-search","owner":"limix","description":"Univariate function optimization based on Brent's method.","archived":false,"fork":false,"pushed_at":"2021-05-16T00:23:58.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-25T01:41:38.757Z","etag":null,"topics":["brent","optimization","search"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/limix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-10-25T00:36:02.000Z","updated_at":"2021-05-16T00:23:45.000Z","dependencies_parsed_at":"2022-10-03T18:51:31.056Z","dependency_job_id":null,"html_url":"https://github.com/limix/brent-search","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limix%2Fbrent-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limix%2Fbrent-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limix%2Fbrent-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limix%2Fbrent-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/limix","download_url":"https://codeload.github.com/limix/brent-search/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243945525,"owners_count":20372894,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["brent","optimization","search"],"created_at":"2024-11-22T23:28:49.999Z","updated_at":"2025-12-12T00:58:09.161Z","avatar_url":"https://github.com/limix.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# brent-search\n\nBrent's method for univariate function optimization.\n\n## Example\n\n```python\nfrom brent_search import brent\n\ndef func(x, s):\n  return (x - s)**2 - 0.8\n\nr = brent(lambda x: func(x, 0), -10, 10)\nprint(r)\n```\n\nThe output should be\n\n```python\n(0.0, -0.8, 6)\n```\n\n## Install\n\nFrom command line, enter\n\n```bash\npip install brent-search\n```\n\n## Authors\n\n* [Danilo Horta](https://github.com/horta)\n\n## Acknowledgements\n\n- http://people.sc.fsu.edu/~jburkardt/c_src/brent/brent.c\n- Numerical Recipes 3rd Edition: The Art of Scientific Computing\n- https://en.wikipedia.org/wiki/Brent%27s_method\n\n\n## License\n\nThis project is licensed under the [MIT License](https://raw.githubusercontent.com/limix/brent-search/master/LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimix%2Fbrent-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flimix%2Fbrent-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimix%2Fbrent-search/lists"}