Karesis

Results 5 issues of Karesis

### 问题描述 / Describe the bug Ubuntu系统,安装2.2.0后系统提示自动安装虚拟网卡,然后所有代理组全部消失。但是只要没有安装虚拟网卡,所有功能就都正常。 ### 软件版本 / Verge Version 2.2.0正式版 ### 复现步骤 / To Reproduce 正常安装,然后系统会自动弹出两次窗口,输入设定的用户的密码后,出现bug(或者拒绝,进入软件后在设置里提示安装虚拟网卡功能,点击,然后就会出现bug) ### 操作系统 / OS Linux ### 操作系统版本 / OS Version Linux...

bug

## Changes This PR addresses potential side effects caused by in-place operations in the TimesNet model. ### Modifications - Replaced in-place operators (e.g., `/=`, `+=`) with their non-in-place counterparts (e.g.,...

I've been studying the MCTS implementation in this project and noticed that the current approach either resets the search tree between moves or only retains a limited portion (around 7...

## Description This PR implements the `get_alignment` method in the `BasicType` trait by utilizing the underlying `Type::get_alignment` implementation. Previously, `get_alignment` was only available on specific types (like `IntType`, `StructType`) but...

I find a good pattern to write chumsky parsers to share. You can just write like this: ```rust // A common setup type ParserInput, Span>; type ParserError>; ``` Or else...